diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-11 21:07:12 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-11 21:07:12 +0000 |
commit | c54286ab08e0c55dba72e4e9718e81b416e585d0 (patch) | |
tree | 1eb2834c22f8bb8815eb0afad65924f6864697c8 | |
parent | 64d50fa551792de85db00b8102077f833491643e (diff) | |
download | ffmpeg-c54286ab08e0c55dba72e4e9718e81b416e585d0.tar.gz |
Fix illegal identifier starting with an underscore.
Originally committed as revision 16549 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/4xm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/4xm.c b/libavformat/4xm.c index f8537165b5..a9bdd02766 100644 --- a/libavformat/4xm.c +++ b/libavformat/4xm.c @@ -30,7 +30,7 @@ #include "avformat.h" #define RIFF_TAG MKTAG('R', 'I', 'F', 'F') -#define _4XMV_TAG MKTAG('4', 'X', 'M', 'V') +#define FOURXMV_TAG MKTAG('4', 'X', 'M', 'V') #define LIST_TAG MKTAG('L', 'I', 'S', 'T') #define HEAD_TAG MKTAG('H', 'E', 'A', 'D') #define TRK__TAG MKTAG('T', 'R', 'K', '_') @@ -83,7 +83,7 @@ typedef struct FourxmDemuxContext { static int fourxm_probe(AVProbeData *p) { if ((AV_RL32(&p->buf[0]) != RIFF_TAG) || - (AV_RL32(&p->buf[8]) != _4XMV_TAG)) + (AV_RL32(&p->buf[8]) != FOURXMV_TAG)) return 0; return AVPROBE_SCORE_MAX; |