summaryrefslogtreecommitdiff
path: root/libavcodec/r210dec.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2010-09-13 22:09:28 +0000
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2010-09-13 22:09:28 +0000
commit6639af56ea2c1fd7275c0fa711c94c30c53548cd (patch)
treed2dd2f6c925371dd62f572c987f760548d0162c1 /libavcodec/r210dec.c
parent4383692896499933ab7a4978314067be0edbfdb3 (diff)
Reindent after r25115.
Originally committed as revision 25116 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/r210dec.c')
-rw-r--r--libavcodec/r210dec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/r210dec.c b/libavcodec/r210dec.c
index b88211eeb7..b1fe62d725 100644
--- a/libavcodec/r210dec.c
+++ b/libavcodec/r210dec.c
@@ -64,9 +64,9 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
uint32_t pixel = av_be2ne32(*src++);
uint16_t r, g, b;
if (avctx->codec_id==CODEC_ID_R210) {
- b = pixel << 6;
- g = (pixel >> 4) & 0xffc0;
- r = (pixel >> 14) & 0xffc0;
+ b = pixel << 6;
+ g = (pixel >> 4) & 0xffc0;
+ r = (pixel >> 14) & 0xffc0;
} else {
b = pixel << 4;
g = (pixel >> 6) & 0xffc0;