summaryrefslogtreecommitdiff
path: root/contrib/ffmpeg/libavformat/dsicin.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ffmpeg/libavformat/dsicin.c')
-rw-r--r--contrib/ffmpeg/libavformat/dsicin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/ffmpeg/libavformat/dsicin.c b/contrib/ffmpeg/libavformat/dsicin.c
index f274eadf8..fb9cb50df 100644
--- a/contrib/ffmpeg/libavformat/dsicin.c
+++ b/contrib/ffmpeg/libavformat/dsicin.c
@@ -62,11 +62,11 @@ static int cin_probe(AVProbeData *p)
return 0;
/* header starts with this special marker */
- if (LE_32(&p->buf[0]) != 0x55AA0000)
+ if (AV_RL32(&p->buf[0]) != 0x55AA0000)
return 0;
/* for accuracy, check some header field values */
- if (LE_32(&p->buf[12]) != 22050 || p->buf[16] != 16 || p->buf[17] != 0)
+ if (AV_RL32(&p->buf[12]) != 22050 || p->buf[16] != 16 || p->buf[17] != 0)
return 0;
return AVPROBE_SCORE_MAX;