summaryrefslogtreecommitdiff
path: root/libavcodec/frwu.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-03-12 18:11:32 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2012-03-12 11:41:02 -0700
commit05d089a80bf01de696b918c3491d1127eba7cbc0 (patch)
tree083c776ebefdd6f7c8f97971c068d11d38972e2f /libavcodec/frwu.c
parent919f3554387e043bdfe10c6369356d1104882183 (diff)
frwu: use MKTAG to check marker instead of AV_RL32
Using intreadwrite.h for this is overkill. Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavcodec/frwu.c')
-rw-r--r--libavcodec/frwu.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/frwu.c b/libavcodec/frwu.c
index c21c19a2ee..305d0cd6d0 100644
--- a/libavcodec/frwu.c
+++ b/libavcodec/frwu.c
@@ -22,7 +22,6 @@
#include "avcodec.h"
#include "bytestream.h"
-#include "libavutil/intreadwrite.h"
static av_cold int decode_init(AVCodecContext *avctx)
{
@@ -54,7 +53,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
av_log(avctx, AV_LOG_ERROR, "Packet is too small.\n");
return AVERROR_INVALIDDATA;
}
- if (bytestream_get_le32(&buf) != AV_RL32("FRW1")) {
+ if (bytestream_get_le32(&buf) != MKTAG('F', 'R', 'W', '1')) {
av_log(avctx, AV_LOG_ERROR, "incorrect marker\n");
return AVERROR_INVALIDDATA;
}