Browse Source

Merge commit 'fc308b30bb24e623fed042ec78b10803b2362a18'

* commit 'fc308b30bb24e623fed042ec78b10803b2362a18':
  rtpenc_mpegts: Call write_trailer for the mpegts muxer even if no output buffer exists

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 11 years ago
parent
commit
a701a9cff4
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      libavformat/rtpenc_mpegts.c

+ 1
- 3
libavformat/rtpenc_mpegts.c View File

@@ -32,11 +32,9 @@ static int rtp_mpegts_write_close(AVFormatContext *s)
struct MuxChain *chain = s->priv_data;

if (chain->mpegts_ctx) {
if (!chain->mpegts_ctx->pb)
avio_open_dyn_buf(&chain->mpegts_ctx->pb);
av_write_trailer(chain->mpegts_ctx);
if (chain->mpegts_ctx->pb) {
uint8_t *buf;
av_write_trailer(chain->mpegts_ctx);
avio_close_dyn_buf(chain->mpegts_ctx->pb, &buf);
av_free(buf);
}


Loading…
Cancel
Save