[SCM] libav/experimental: set is_streamed before writing data to output file

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:22:31 UTC 2013


The following commit has been merged in the experimental branch:
commit 58bd615ff5b38b614822569360f66989a9159491
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date:   Fri May 30 00:21:42 2008 +0000

    set is_streamed before writing data to output file
    
    Originally committed as revision 13543 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/ffserver.c b/ffserver.c
index bf7b5ca..f7288d0 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;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list