[FFmpeg-cvslog] r19545 - trunk/libavdevice/vfwcap.c

ramiro subversion
Thu Jul 30 19:31:28 CEST 2009


Author: ramiro
Date: Thu Jul 30 19:31:28 2009
New Revision: 19545

Log:
vfwcap: Indent.

Modified:
   trunk/libavdevice/vfwcap.c

Modified: trunk/libavdevice/vfwcap.c
==============================================================================
--- trunk/libavdevice/vfwcap.c	Thu Jul 30 19:29:24 2009	(r19544)
+++ trunk/libavdevice/vfwcap.c	Thu Jul 30 19:31:28 2009	(r19545)
@@ -332,17 +332,16 @@ static int vfw_read_header(AVFormatConte
     if(codec->pix_fmt == PIX_FMT_NONE) {
         codec->codec_id = vfw_codecid(biCompression);
         if(codec->codec_id == CODEC_ID_NONE) {
-        av_log(s, AV_LOG_ERROR, "Unknown compression type. "
-                         "Please report verbose (-v 9) debug information.\n");
-        vfw_read_close(s);
-        return AVERROR_PATCHWELCOME;
+            av_log(s, AV_LOG_ERROR, "Unknown compression type. "
+                             "Please report verbose (-v 9) debug information.\n");
+            vfw_read_close(s);
+            return AVERROR_PATCHWELCOME;
         }
         codec->bits_per_coded_sample = biBitCount;
-    }
-    else {
-    codec->codec_id = CODEC_ID_RAWVIDEO;
-    if(biCompression == BI_RGB)
-        codec->bits_per_coded_sample = biBitCount;
+    } else {
+        codec->codec_id = CODEC_ID_RAWVIDEO;
+        if(biCompression == BI_RGB)
+            codec->bits_per_coded_sample = biBitCount;
     }
 
     av_set_pts_info(st, 32, 1, 1000);



More information about the ffmpeg-cvslog mailing list