aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-06-10 17:41:57 +0200
committerAnton Khirnov <anton@khirnov.net>2014-06-12 09:30:13 +0200
commite0fcad77618a0455ca9c2451ea0aa538597a08c0 (patch)
tree244bf33ff64a532fd8c1e09eebf2042f721a5cf7
parent9455a023be9f3915ccf5511a0b8fdb5b8897b2b6 (diff)
downloadffmpeg-e0fcad77618a0455ca9c2451ea0aa538597a08c0.tar.gz
avconv: make -shortest work with streamcopy
CC: libav-stable@libav.org (cherry picked from commit 48e50921337984ba4ec2c1cafe45d43787f84498) Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r--avconv.c27
1 files changed, 16 insertions, 11 deletions
diff --git a/avconv.c b/avconv.c
index 6544fc6fb7..ad64c520d7 100644
--- a/avconv.c
+++ b/avconv.c
@@ -720,6 +720,19 @@ static int poll_filter(OutputStream *ost)
return 0;
}
+static void finish_output_stream(OutputStream *ost)
+{
+ OutputFile *of = output_files[ost->file_index];
+ int i;
+
+ ost->finished = 1;
+
+ if (of->shortest) {
+ for (i = 0; i < of->ctx->nb_streams; i++)
+ output_streams[of->ost_index + i]->finished = 1;
+ }
+}
+
/*
* Read as many frames from possible from lavfi and encode them.
*
@@ -730,7 +743,7 @@ static int poll_filter(OutputStream *ost)
*/
static int poll_filters(void)
{
- int i, j, ret = 0;
+ int i, ret = 0;
while (ret >= 0 && !received_sigterm) {
OutputStream *ost = NULL;
@@ -757,15 +770,7 @@ static int poll_filters(void)
ret = poll_filter(ost);
if (ret == AVERROR_EOF) {
- OutputFile *of = output_files[ost->file_index];
-
- ost->finished = 1;
-
- if (of->shortest) {
- for (j = 0; j < of->ctx->nb_streams; j++)
- output_streams[of->ost_index + j]->finished = 1;
- }
-
+ finish_output_stream(ost);
ret = 0;
} else if (ret == AVERROR(EAGAIN))
return 0;
@@ -2127,7 +2132,7 @@ static int process_input(void)
if (ost->source_index == ifile->ist_index + i &&
(ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
- ost->finished= 1;
+ finish_output_stream(ost);
}
}