shithub: opus

Download patch

ref: d0b1cd886a43e588c8ed55f578c8a0c1f3f3f9ba
parent: 5b494216486cf1d4d48269e74c2a197eb06c2f9a
author: Jan Buethe <jbuethe@amazon.de>
date: Fri Oct 21 12:35:43 EDT 2022

bugfixes

--- a/dnn/dred_rdovae.c
+++ b/dnn/dred_rdovae.c
@@ -33,7 +33,7 @@
     return enc;
 }
 
-RDOVAEEnc * DRED_rdovae_create_decoder()
+RDOVAEDec * DRED_rdovae_create_decoder()
 {
     RDOVAEDec *dec;
     dec = (RDOVAEDec*) calloc(sizeof(*dec), 1);
--- a/dnn/include/dred_rdovae.h
+++ b/dnn/include/dred_rdovae.h
@@ -8,7 +8,7 @@
 
 size_t DRED_rdovae_get_dec_size(void);
 
-RDOVAEEnc * DRED_rdovae_create_decoder(void);
+RDOVAEDec * DRED_rdovae_create_decoder(void);
 
 RDOVAEEnc * DRED_rdovae_create_encoder(void);
 
--