summaryrefslogtreecommitdiff
path: root/libavformat/dsicin.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/dsicin.c')
-rw-r--r--libavformat/dsicin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/dsicin.c b/libavformat/dsicin.c
index f274eadf86..fb9cb50dfe 100644
--- a/libavformat/dsicin.c
+++ b/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;