Mercurial > libavcodec.hg
changeset 12491:990f8a5fc8af libavcodec
Reindent after r25115.
author | cehoyos |
---|---|
date | Mon, 13 Sep 2010 22:09:28 +0000 |
parents | e1a4ceb96a07 |
children | 58a960d6e34c |
files | r210dec.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/r210dec.c Mon Sep 13 22:08:51 2010 +0000 +++ b/r210dec.c Mon Sep 13 22:09:28 2010 +0000 @@ -64,9 +64,9 @@ 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;