Browse Source

bink: reindent after last commit

Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
tags/n0.8
Peter Ross Janne Grunau 14 years ago
parent
commit
adb1ad0d80
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      libavcodec/bink.c

+ 6
- 6
libavcodec/bink.c View File

@@ -1163,13 +1163,13 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
int bits_count = pkt->size << 3;

if (c->version > 'b') {
if(c->pic.data[0])
avctx->release_buffer(avctx, &c->pic);
if(c->pic.data[0])
avctx->release_buffer(avctx, &c->pic);

if(avctx->get_buffer(avctx, &c->pic) < 0){
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
return -1;
}
if(avctx->get_buffer(avctx, &c->pic) < 0){
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
return -1;
}
} else {
if(avctx->reget_buffer(avctx, &c->pic) < 0){
av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");


Loading…
Cancel
Save