[FFmpeg-cvslog] r22974 - trunk/libavcodec/iff.c
rbultje
subversion
Tue Apr 27 00:37:13 CEST 2010
Author: rbultje
Date: Tue Apr 27 00:37:13 2010
New Revision: 22974
Log:
Switch some ints to unsigned (they can only have positive values, this allows
compiler to optimize some math from mul/div to shr/shl). Also add a cast to
uint32_t when calling decodeplane32().
Patch by Sebastian Vater <cdgs.basty googlemail com>.
Modified:
trunk/libavcodec/iff.c
Modified: trunk/libavcodec/iff.c
==============================================================================
--- trunk/libavcodec/iff.c Tue Apr 27 00:36:55 2010 (r22973)
+++ trunk/libavcodec/iff.c Tue Apr 27 00:37:13 2010 (r22974)
@@ -1,6 +1,7 @@
/*
* IFF PBM/ILBM bitmap decoder
* Copyright (c) 2010 Peter Ross <pross at xvid.org>
+ * Copyright (c) 2010 Sebastian Vater <cdgs.basty at googlemail.com>
*
* This file is part of FFmpeg.
*
@@ -31,7 +32,7 @@
typedef struct {
AVFrame frame;
- int planesize;
+ unsigned planesize;
uint8_t * planebuf;
} IffContext;
@@ -40,7 +41,7 @@ typedef struct {
*/
int ff_cmap_read_palette(AVCodecContext *avctx, uint32_t *pal)
{
- int count, i;
+ unsigned count, i;
if (avctx->bits_per_coded_sample > 8) {
av_log(avctx, AV_LOG_ERROR, "bit_per_coded_sample > 8 not supported\n");
@@ -71,7 +72,7 @@ static av_cold int decode_init(AVCodecCo
return AVERROR_INVALIDDATA;
}
- s->planesize = avctx->width / 8;
+ s->planesize = avctx->width >> 3;
s->planebuf = av_malloc(s->planesize + FF_INPUT_BUFFER_PADDING_SIZE);
if (!s->planebuf)
return AVERROR(ENOMEM);
@@ -97,12 +98,11 @@ static av_cold int decode_init(AVCodecCo
static void decodeplane8(uint8_t *dst, const uint8_t *const buf, int buf_size, int bps, int plane)
{
GetBitContext gb;
- int i, b;
+ unsigned int i;
+ const unsigned b = (buf_size * 8) + bps - 1;
init_get_bits(&gb, buf, buf_size * 8);
- for(i = 0; i < (buf_size * 8 + bps - 1) / bps; i++) {
- for (b = 0; b < bps; b++) {
- dst[ i*bps + b ] |= get_bits1(&gb) << plane;
- }
+ for(i = 0; i < b; i++) {
+ dst[i] |= get_bits1(&gb) << plane;
}
}
@@ -117,12 +117,11 @@ static void decodeplane8(uint8_t *dst, c
static void decodeplane32(uint32_t *dst, const uint8_t *const buf, int buf_size, int bps, int plane)
{
GetBitContext gb;
- int i, b;
+ unsigned i;
+ const unsigned b = (buf_size * 8) + bps - 1;
init_get_bits(&gb, buf, buf_size * 8);
- for(i = 0; i < (buf_size * 8 + bps - 1) / bps; i++) {
- for (b = 0; b < bps; b++) {
- dst[ i*bps + b ] |= get_bits1(&gb) << plane;
- }
+ for(i = 0; i < b; i++) {
+ dst[i] |= get_bits1(&gb) << plane;
}
}
@@ -132,9 +131,9 @@ static int decode_frame_ilbm(AVCodecCont
{
IffContext *s = avctx->priv_data;
const uint8_t *buf = avpkt->data;
- int buf_size = avpkt->size;
+ unsigned buf_size = avpkt->size;
const uint8_t *buf_end = buf+buf_size;
- int y, plane;
+ unsigned y, plane;
if (avctx->reget_buffer(avctx, &s->frame) < 0){
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
@@ -148,7 +147,7 @@ static int decode_frame_ilbm(AVCodecCont
if (avctx->pix_fmt == PIX_FMT_PAL8) {
decodeplane8(row, buf, FFMIN(s->planesize, buf_end - buf), avctx->bits_per_coded_sample, plane);
} else { // PIX_FMT_BGR32
- decodeplane32(row, buf, FFMIN(s->planesize, buf_end - buf), avctx->bits_per_coded_sample, plane);
+ decodeplane32((uint32_t *) row, buf, FFMIN(s->planesize, buf_end - buf), avctx->bits_per_coded_sample, plane);
}
buf += s->planesize;
}
@@ -165,9 +164,9 @@ static int decode_frame_byterun1(AVCodec
{
IffContext *s = avctx->priv_data;
const uint8_t *buf = avpkt->data;
- int buf_size = avpkt->size;
+ unsigned buf_size = avpkt->size;
const uint8_t *buf_end = buf+buf_size;
- int y, plane, x;
+ unsigned y, plane, x;
if (avctx->reget_buffer(avctx, &s->frame) < 0){
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
@@ -181,7 +180,7 @@ static int decode_frame_byterun1(AVCodec
for (plane = 0; plane < avctx->bits_per_coded_sample; plane++) {
for(x = 0; x < s->planesize && buf < buf_end; ) {
int8_t value = *buf++;
- int length;
+ unsigned length;
if (value >= 0) {
length = value + 1;
memcpy(s->planebuf + x, buf, FFMIN3(length, s->planesize - x, buf_end - buf));
@@ -197,13 +196,13 @@ static int decode_frame_byterun1(AVCodec
if (avctx->pix_fmt == PIX_FMT_PAL8) {
decodeplane8(row, s->planebuf, s->planesize, avctx->bits_per_coded_sample, plane);
} else { //PIX_FMT_BGR32
- decodeplane32(row, s->planebuf, s->planesize, avctx->bits_per_coded_sample, plane);
+ decodeplane32((uint32_t *) row, s->planebuf, s->planesize, avctx->bits_per_coded_sample, plane);
}
}
} else {
for(x = 0; x < avctx->width && buf < buf_end; ) {
int8_t value = *buf++;
- int length;
+ unsigned length;
if (value >= 0) {
length = value + 1;
memcpy(row + x, buf, FFMIN3(length, buf_end - buf, avctx->width - x));
More information about the ffmpeg-cvslog
mailing list