changeset 34196:c910df5dc9ae

Map 8svx fourcc to 8raw instead of relying on non-existing CODEC_ID.
author diego
date Mon, 31 Oct 2011 19:44:51 +0000
parents 5affa2074131
children 0fc1835211d1
files libmpdemux/mp_taglists.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/mp_taglists.c	Mon Oct 31 13:18:45 2011 +0000
+++ b/libmpdemux/mp_taglists.c	Mon Oct 31 19:44:51 2011 +0000
@@ -21,6 +21,7 @@
 #include <stdint.h>
 #include "mp_msg.h"
 #include "mp_taglists.h"
+#include "libavutil/common.h"
 #include "libavformat/avformat.h"
 // for AVCodecTag
 #include "libavformat/internal.h"
@@ -68,7 +69,7 @@
 static const struct AVCodecTag mp_codecid_override_tags[] = {
     { CODEC_ID_8SVX_EXP,          MKTAG('8', 'e', 'x', 'p')},
     { CODEC_ID_8SVX_FIB,          MKTAG('8', 'f', 'i', 'b')},
-    { CODEC_ID_8SVX_RAW,          MKTAG('8', 'r', 'a', 'w')},
+    { MKBETAG('8','S','V','X'),   MKTAG('8', 'r', 'a', 'w')},
     { CODEC_ID_AAC,               MKTAG('M', 'P', '4', 'A')},
     { CODEC_ID_AAC_LATM,          MKTAG('M', 'P', '4', 'L')},
     { CODEC_ID_AC3,               0x2000},