ffmpeg | branch: master | Anton Khirnov <an...@khirnov.net> | Mon Jun 20 
14:18:37 2022 +0200| [753195944a199631306e8aea3d35c469189f2ef7] | committer: 
Anton Khirnov

fftools/ffmpeg_opt: reindent

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=753195944a199631306e8aea3d35c469189f2ef7
---

 fftools/ffmpeg_opt.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c
index 287527f478..a472b254cb 100644
--- a/fftools/ffmpeg_opt.c
+++ b/fftools/ffmpeg_opt.c
@@ -2621,15 +2621,15 @@ static void map_auto_subtitle(OutputFile *of, 
AVFormatContext *oc,
 static void map_auto_data(OutputFile *of, AVFormatContext *oc,
                           OptionsContext *o)
 {
-        /* Data only if codec id match */
-            enum AVCodecID codec_id = av_guess_codec(oc->oformat, NULL, 
oc->url, NULL, AVMEDIA_TYPE_DATA);
-            for (int i = 0; codec_id != AV_CODEC_ID_NONE && i < 
nb_input_streams; i++) {
-                if (input_streams[i]->user_set_discard == AVDISCARD_ALL)
-                    continue;
-                if (input_streams[i]->st->codecpar->codec_type == 
AVMEDIA_TYPE_DATA
-                    && input_streams[i]->st->codecpar->codec_id == codec_id )
-                    new_data_stream(o, oc, i);
-            }
+    /* Data only if codec id match */
+    enum AVCodecID codec_id = av_guess_codec(oc->oformat, NULL, oc->url, NULL, 
AVMEDIA_TYPE_DATA);
+    for (int i = 0; codec_id != AV_CODEC_ID_NONE && i < nb_input_streams; i++) 
{
+        if (input_streams[i]->user_set_discard == AVDISCARD_ALL)
+            continue;
+        if (input_streams[i]->st->codecpar->codec_type == AVMEDIA_TYPE_DATA
+            && input_streams[i]->st->codecpar->codec_id == codec_id )
+            new_data_stream(o, oc, i);
+    }
 }
 
 static int open_output_file(OptionsContext *o, const char *filename)

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to