]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Fix illegal identifier starting with an underscore.
authordiego <diego@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sun, 11 Jan 2009 21:07:12 +0000 (21:07 +0000)
committerdiego <diego@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sun, 11 Jan 2009 21:07:12 +0000 (21:07 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16549 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavformat/4xm.c

index f8537165b53be705975581fe69f3626f2e3ff7d8..a9bdd02766ea83b12cb76e99ebe69f12f3deffcf 100644 (file)
@@ -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;