[vlc-commits] adpcm: Fix fourcc mismatch

Hugo Beauzée-Luyssen git at videolan.org
Thu Jul 13 09:48:09 CEST 2017


vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Thu Jul 13 09:44:49 2017 +0200| [5d168c429a273063676e05602c40de0d27ba93ae] | committer: Hugo Beauzée-Luyssen

adpcm: Fix fourcc mismatch

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5d168c429a273063676e05602c40de0d27ba93ae
---

 modules/codec/adpcm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/codec/adpcm.c b/modules/codec/adpcm.c
index 6296620702..c76605b4f5 100644
--- a/modules/codec/adpcm.c
+++ b/modules/codec/adpcm.c
@@ -189,7 +189,7 @@ static int OpenDecoder( vlc_object_t *p_this )
             p_sys->codec = ADPCM_DK3;
             i_max_channels = 2;
             break;
-        case VLC_CODEC_ADPCM_EA: /* EA ADPCM */
+        case VLC_CODEC_ADPCM_XA_EA: /* EA ADPCM */
             p_sys->codec = ADPCM_EA;
             p_sys->prev = calloc( 2 * p_dec->fmt_in.audio.i_channels,
                                   sizeof( int16_t ) );



More information about the vlc-commits mailing list