diff options
author | Mike Melanson | 2004-01-31 17:57:57 +0000 |
---|---|---|
committer | Mike Melanson | 2004-01-31 17:57:57 +0000 |
commit | 155aa4174d3ed09b23012f6d6caf3509a93f485b (patch) | |
tree | a43c03f15cbfe90828f1556c1a610fdd4912fd4f /libavcodec/rpza.c | |
parent | df72754d03b164fa2ee2baafed248cffafcda5cc (diff) |
watch those hard tabs
Originally committed as revision 2733 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rpza.c')
-rw-r--r-- | libavcodec/rpza.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/rpza.c b/libavcodec/rpza.c index b7c09f95db..965fb729b0 100644 --- a/libavcodec/rpza.c +++ b/libavcodec/rpza.c @@ -254,15 +254,15 @@ static int rpza_decode_frame(AVCodecContext *avctx, { RpzaContext *s = (RpzaContext *)avctx->priv_data; - /* no supplementary picture */ - if (buf_size == 0) - return 0; + /* no supplementary picture */ + if (buf_size == 0) + return 0; s->buf = buf; s->size = buf_size; s->frame.reference = 1; - s->frame.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE; + s->frame.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE; if (avctx->reget_buffer(avctx, &s->frame)) { av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n"); return -1; |