# HG changeset patch # User diego # Date 1320090291 0 # Node ID c910df5dc9ae4a071f938cc5fc3f88ae2701d0e2 # Parent 5affa2074131cec6449569c6d2dedccc61b09938 Map 8svx fourcc to 8raw instead of relying on non-existing CODEC_ID. diff -r 5affa2074131 -r c910df5dc9ae libmpdemux/mp_taglists.c --- 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 #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},