Mercurial > libavformat.hg
changeset 4198:64ece9005d76 libavformat
Fix illegal identifier starting with an underscore.
author | diego |
---|---|
date | Sun, 11 Jan 2009 21:07:12 +0000 |
parents | 84251a788a67 |
children | 0702e0927a4f |
files | 4xm.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/4xm.c Sun Jan 11 21:04:25 2009 +0000 +++ b/4xm.c Sun Jan 11 21:07:12 2009 +0000 @@ -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 @@ 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;