]> git.sesse.net Git - ffmpeg/commitdiff
ffmpeg: always init output stream before reaping filters
authorMarton Balint <cus@passwd.hu>
Tue, 3 Oct 2017 22:43:30 +0000 (00:43 +0200)
committerMarton Balint <cus@passwd.hu>
Wed, 18 Oct 2017 19:52:47 +0000 (21:52 +0200)
Otherwise the frame size of the codec is not set in the buffersink.

Fixes ticket #6603 and the following simpler case:

ffmpeg -c aac -filter_complex "sine=d=0.1,asetnsamples=1025" out.aac

Signed-off-by: Marton Balint <cus@passwd.hu>
fftools/ffmpeg.c

index 3ee31473dc5c41d95fb494f7d1c21ac6dfa61477..d581b40bf2f791064d23408468da1bffabedccff 100644 (file)
@@ -4536,6 +4536,15 @@ static int transcode_step(void)
     }
 
     if (ost->filter && ost->filter->graph->graph) {
+        if (!ost->initialized) {
+            char error[1024] = {0};
+            ret = init_output_stream(ost, error, sizeof(error));
+            if (ret < 0) {
+                av_log(NULL, AV_LOG_ERROR, "Error initializing output stream %d:%d -- %s\n",
+                       ost->file_index, ost->index, error);
+                exit_program(1);
+            }
+        }
         if ((ret = transcode_from_filter(ost->filter->graph, &ist)) < 0)
             return ret;
         if (!ist)