summaryrefslogtreecommitdiff
path: root/libavcodec/rawdec.c
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2013-03-09 16:47:38 +0100
committerAnton Khirnov <anton@khirnov.net>2013-03-13 09:13:54 +0100
commitbe40d6cc2bc99ef90954c85f2bc77f95944ba723 (patch)
treedc7271030aa62c4a408492d54ae8c8c911465bcb /libavcodec/rawdec.c
parent37cb3b180a1dc3d6f123f68e0806585ebc2578b6 (diff)
rawdec: fix a typo -- || instead of |
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/rawdec.c')
-rw-r--r--libavcodec/rawdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c
index 59a6dd676d..0a76e4d383 100644
--- a/libavcodec/rawdec.c
+++ b/libavcodec/rawdec.c
@@ -98,7 +98,7 @@ static av_cold int raw_init_decoder(AVCodecContext *avctx)
return AVERROR(EINVAL);
}
- if (desc->flags & (PIX_FMT_PAL || PIX_FMT_PSEUDOPAL)) {
+ if (desc->flags & (PIX_FMT_PAL | PIX_FMT_PSEUDOPAL)) {
context->palette = av_buffer_alloc(AVPALETTE_SIZE);
if (!context->palette)
return AVERROR(ENOMEM);