[FFmpeg-cvslog] r25116 - trunk/libavcodec/r210dec.c
    cehoyos 
    subversion
       
    Tue Sep 14 00:09:28 CEST 2010
    
    
  
Author: cehoyos
Date: Tue Sep 14 00:09:28 2010
New Revision: 25116
Log:
Reindent after r25115.
Modified:
   trunk/libavcodec/r210dec.c
Modified: trunk/libavcodec/r210dec.c
==============================================================================
--- trunk/libavcodec/r210dec.c	Tue Sep 14 00:08:51 2010	(r25115)
+++ trunk/libavcodec/r210dec.c	Tue Sep 14 00:09:28 2010	(r25116)
@@ -64,9 +64,9 @@ static int decode_frame(AVCodecContext *
             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;
    
    
More information about the ffmpeg-cvslog
mailing list