summaryrefslogtreecommitdiff
path: root/libavcodec/msvideo1.c
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2004-01-31 17:57:57 +0000
committerMike Melanson <mike@multimedia.cx>2004-01-31 17:57:57 +0000
commit155aa4174d3ed09b23012f6d6caf3509a93f485b (patch)
treea43c03f15cbfe90828f1556c1a610fdd4912fd4f /libavcodec/msvideo1.c
parentdf72754d03b164fa2ee2baafed248cffafcda5cc (diff)
watch those hard tabs
Originally committed as revision 2733 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/msvideo1.c')
-rw-r--r--libavcodec/msvideo1.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/msvideo1.c b/libavcodec/msvideo1.c
index 789d7e798b..3190efb9ef 100644
--- a/libavcodec/msvideo1.c
+++ b/libavcodec/msvideo1.c
@@ -303,15 +303,15 @@ static int msvideo1_decode_frame(AVCodecContext *avctx,
{
Msvideo1Context *s = (Msvideo1Context *)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.reference = 1;
+ 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(s->avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
return -1;