[MPlayer-cvslog] r34284 - trunk/libmpdemux/mp_taglists.c
diego
subversion at mplayerhq.hu
Mon Oct 31 20:44:51 CET 2011
Author: diego
Date: Mon Oct 31 20:44:51 2011
New Revision: 34284
Log:
Map 8svx fourcc to 8raw instead of relying on non-existing CODEC_ID.
Modified:
trunk/libmpdemux/mp_taglists.c
Modified: trunk/libmpdemux/mp_taglists.c
==============================================================================
--- trunk/libmpdemux/mp_taglists.c Mon Oct 31 14:18:45 2011 (r34283)
+++ trunk/libmpdemux/mp_taglists.c Mon Oct 31 20:44:51 2011 (r34284)
@@ -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 * const m
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},
More information about the MPlayer-cvslog
mailing list