Commit 6639af56 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Reindent after r25115.

Originally committed as revision 25116 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 43836928
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment