diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-05-30 00:21:42 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-05-30 00:21:42 +0000 |
commit | 58bd615ff5b38b614822569360f66989a9159491 (patch) | |
tree | d04aeeef927821f03f6e3e42ab1c70dbb59f3bf7 /ffserver.c | |
parent | 7e14f14584939ec0dc822ae6fa91355f9c307913 (diff) | |
download | ffmpeg-58bd615ff5b38b614822569360f66989a9159491.tar.gz |
set is_streamed before writing data to output file
Originally committed as revision 13543 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffserver.c')
-rw-r--r-- | ffserver.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ffserver.c b/ffserver.c index bf7b5caf7d..f7288d0989 100644 --- a/ffserver.c +++ b/ffserver.c @@ -2164,6 +2164,7 @@ static int http_prepare_data(HTTPContext *c) /* XXX: potential leak */ return -1; } + c->fmt_ctx.pb->is_streamed = 1; if (pkt.dts != AV_NOPTS_VALUE) pkt.dts = av_rescale_q(pkt.dts, c->fmt_in->streams[pkt.stream_index]->time_base, @@ -2201,6 +2202,7 @@ static int http_prepare_data(HTTPContext *c) /* XXX: potential leak */ return -1; } + c->fmt_ctx.pb->is_streamed = 1; av_write_trailer(ctx); len = url_close_dyn_buf(ctx->pb, &c->pb_buffer); c->buffer_ptr = c->pb_buffer; |