[FFmpeg-devel] [PATCH] lavc/rawdec: prefer constant AVPALETTE_SIZE over 256*4
Stefano Sabatini
stefasab at gmail.com
Tue Jun 26 13:17:08 CEST 2012
Improve readability.
---
libavcodec/rawdec.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c
index 1bbe93d..09089ec 100644
--- a/libavcodec/rawdec.c
+++ b/libavcodec/rawdec.c
@@ -171,7 +171,7 @@ static int raw_decode(AVCodecContext *avctx,
if (context->buffer) {
int i;
uint8_t *dst = context->buffer;
- buf_size = context->buffer_size - 256*4;
+ buf_size = context->buffer_size - AVPALETTE_SIZE;
if (avctx->bits_per_coded_sample == 4){
for(i=0; 2*i+1 < buf_size && i<avpkt->size; i++){
dst[2*i+0]= buf[i]>>4;
@@ -194,7 +194,7 @@ static int raw_decode(AVCodecContext *avctx,
avctx->codec_tag == MKTAG('A', 'V', 'u', 'p'))
buf += buf_size - context->buffer_size;
- len = context->buffer_size - (avctx->pix_fmt==PIX_FMT_PAL8 ? 256*4 : 0);
+ len = context->buffer_size - (avctx->pix_fmt==PIX_FMT_PAL8 ? AVPALETTE_SIZE : 0);
if (buf_size < len) {
av_log(avctx, AV_LOG_ERROR, "Invalid buffer size, packet size %d < expected length %d\n", buf_size, len);
return AVERROR(EINVAL);
--
1.7.5.4
More information about the ffmpeg-devel
mailing list