mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-14 00:58:38 +02:00
Fix illegal identifier starting with an underscore.
Originally committed as revision 16549 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
64d50fa551
commit
c54286ab08
@ -30,7 +30,7 @@
|
|||||||
#include "avformat.h"
|
#include "avformat.h"
|
||||||
|
|
||||||
#define RIFF_TAG MKTAG('R', 'I', 'F', 'F')
|
#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 LIST_TAG MKTAG('L', 'I', 'S', 'T')
|
||||||
#define HEAD_TAG MKTAG('H', 'E', 'A', 'D')
|
#define HEAD_TAG MKTAG('H', 'E', 'A', 'D')
|
||||||
#define TRK__TAG MKTAG('T', 'R', 'K', '_')
|
#define TRK__TAG MKTAG('T', 'R', 'K', '_')
|
||||||
@ -83,7 +83,7 @@ typedef struct FourxmDemuxContext {
|
|||||||
static int fourxm_probe(AVProbeData *p)
|
static int fourxm_probe(AVProbeData *p)
|
||||||
{
|
{
|
||||||
if ((AV_RL32(&p->buf[0]) != RIFF_TAG) ||
|
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 0;
|
||||||
|
|
||||||
return AVPROBE_SCORE_MAX;
|
return AVPROBE_SCORE_MAX;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user