[FFmpeg-cvslog] r15588 - trunk/ffmpeg.c

aurel subversion
Wed Oct 8 19:28:50 CEST 2008


Author: aurel
Date: Wed Oct  8 19:28:49 2008
New Revision: 15588

Log:
cosmetics: indentation

Modified:
   trunk/ffmpeg.c

Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c	(original)
+++ trunk/ffmpeg.c	Wed Oct  8 19:28:49 2008
@@ -1908,7 +1908,7 @@ static int av_encode(AVFormatContext **o
         if (ost->encoding_needed) {
             AVCodec *codec = output_codecs[i];
             if (!codec)
-            codec = avcodec_find_encoder(ost->st->codec->codec_id);
+                codec = avcodec_find_encoder(ost->st->codec->codec_id);
             if (!codec) {
                 fprintf(stderr, "Unsupported codec for output stream #%d.%d\n",
                         ost->file_index, ost->index);
@@ -1929,7 +1929,7 @@ static int av_encode(AVFormatContext **o
         if (ist->decoding_needed) {
             AVCodec *codec = input_codecs[i];
             if (!codec)
-            codec = avcodec_find_decoder(ist->st->codec->codec_id);
+                codec = avcodec_find_decoder(ist->st->codec->codec_id);
             if (!codec) {
                 fprintf(stderr, "Unsupported codec (id=%d) for input stream #%d.%d\n",
                         ist->st->codec->codec_id, ist->file_index, ist->index);




More information about the ffmpeg-cvslog mailing list