[FFmpeg-cvslog] r21359 - in trunk: ffmpeg.c ffplay.c

mru subversion
Wed Jan 20 23:55:55 CET 2010


Author: mru
Date: Wed Jan 20 23:55:55 2010
New Revision: 21359

Log:
Indent

Modified:
   trunk/ffmpeg.c
   trunk/ffplay.c

Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c	Wed Jan 20 23:55:50 2010	(r21358)
+++ trunk/ffmpeg.c	Wed Jan 20 23:55:55 2010	(r21359)
@@ -2931,7 +2931,7 @@ static void opt_input_file(const char *f
     for(i=0;i<ic->nb_streams;i++) {
         AVStream *st = ic->streams[i];
         AVCodecContext *enc = st->codec;
-            avcodec_thread_init(enc, thread_count);
+        avcodec_thread_init(enc, thread_count);
         switch(enc->codec_type) {
         case CODEC_TYPE_AUDIO:
             set_context_opts(enc, avcodec_opts[CODEC_TYPE_AUDIO], AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM);
@@ -3065,7 +3065,7 @@ static void new_video_stream(AVFormatCon
     bitstream_filters[nb_output_files][oc->nb_streams - 1]= video_bitstream_filters;
     video_bitstream_filters= NULL;
 
-        avcodec_thread_init(st->codec, thread_count);
+    avcodec_thread_init(st->codec, thread_count);
 
     video_enc = st->codec;
 
@@ -3210,7 +3210,7 @@ static void new_audio_stream(AVFormatCon
     bitstream_filters[nb_output_files][oc->nb_streams - 1]= audio_bitstream_filters;
     audio_bitstream_filters= NULL;
 
-        avcodec_thread_init(st->codec, thread_count);
+    avcodec_thread_init(st->codec, thread_count);
 
     audio_enc = st->codec;
     audio_enc->codec_type = CODEC_TYPE_AUDIO;

Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c	Wed Jan 20 23:55:50 2010	(r21358)
+++ trunk/ffplay.c	Wed Jan 20 23:55:55 2010	(r21359)
@@ -1722,7 +1722,7 @@ static int stream_component_open(VideoSt
     enc->skip_loop_filter= skip_loop_filter;
     enc->error_recognition= error_recognition;
     enc->error_concealment= error_concealment;
-        avcodec_thread_init(enc, thread_count);
+    avcodec_thread_init(enc, thread_count);
 
     set_context_opts(enc, avcodec_opts[enc->codec_type], 0);
 



More information about the ffmpeg-cvslog mailing list