Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Ross <pross@xvid.org>2011-02-09 15:05:19 +0300
committerMichael Niedermayer <michaelni@gmx.at>2011-02-13 02:52:51 +0300
commit35b8869651dc689c11be56bc96479476380502b6 (patch)
tree7595a3d79df58ad9c9bd786892a1f82e847246d8 /libavcodec
parent547c67c935ef384dcded0f78938f8e195cee6a38 (diff)
bink: reindent after last commit
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit adb1ad0d8005dfcbae863bccdda8fdd26bb63f30)
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/bink.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/bink.c b/libavcodec/bink.c
index b0775284ae..a6cfb71f0c 100644
--- a/libavcodec/bink.c
+++ b/libavcodec/bink.c
@@ -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");