diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-02-21 17:17:09 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-02-21 17:17:09 +0000 |
commit | e641f320bd2d8ce6f3c8cdcbae617481041ce687 (patch) | |
tree | fbe3075e8250cef70bf6935d3c8750d28d49492a /libavcodec/rawdec.c | |
parent | 28499cc8d8ead4075fe0adfc21cd977004395402 (diff) | |
download | ffmpeg-e641f320bd2d8ce6f3c8cdcbae617481041ce687.tar.gz |
indent
Originally committed as revision 17481 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rawdec.c')
-rw-r--r-- | libavcodec/rawdec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index f18a2c58d6..db44f0c8b4 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -93,8 +93,8 @@ static av_cold int raw_init_decoder(AVCodecContext *avctx) } static void flip(AVCodecContext *avctx, AVPicture * picture){ - picture->data[0] += picture->linesize[0] * (avctx->height-1); - picture->linesize[0] *= -1; + picture->data[0] += picture->linesize[0] * (avctx->height-1); + picture->linesize[0] *= -1; } static int raw_decode(AVCodecContext *avctx, @@ -134,7 +134,7 @@ static int raw_decode(AVCodecContext *avctx, } if(context->flip) - flip(avctx, picture); + flip(avctx, picture); if (avctx->codec_tag == MKTAG('Y', 'V', '1', '2')) { |