diff options
author | Marton Balint <cus@passwd.hu> | 2016-06-11 20:02:02 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2016-06-13 22:43:22 +0200 |
commit | 9da27fb579586377ee7f764c5de04fda6740c486 (patch) | |
tree | 3e1e2670f63949230cbbc04428be2a7148b8681d | |
parent | 301ead131381d83e9ff0167b9094b04bde156f79 (diff) | |
download | ffmpeg-9da27fb579586377ee7f764c5de04fda6740c486.tar.gz |
avformat/mux: factorize header writing code
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r-- | libavformat/mux.c | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c index bef230f8eb..08ed940874 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -473,6 +473,21 @@ static int init_pts(AVFormatContext *s) return 0; } +static int write_header_internal(AVFormatContext *s) +{ + if (s->oformat->write_header) { + int ret = s->oformat->write_header(s); + if (ret >= 0 && s->pb && s->pb->error < 0) + ret = s->pb->error; + if (ret < 0) + return ret; + if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS) + avio_flush(s->pb); + } + s->internal->header_written = 1; + return 0; +} + int avformat_write_header(AVFormatContext *s, AVDictionary **options) { int ret = 0; @@ -480,15 +495,10 @@ int avformat_write_header(AVFormatContext *s, AVDictionary **options) if ((ret = init_muxer(s, options)) < 0) return ret; - if (s->oformat->write_header && !s->oformat->check_bitstream) { - ret = s->oformat->write_header(s); - if (ret >= 0 && s->pb && s->pb->error < 0) - ret = s->pb->error; + if (!s->oformat->check_bitstream) { + ret = write_header_internal(s); if (ret < 0) goto fail; - if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS) - avio_flush(s->pb); - s->internal->header_written = 1; } if ((ret = init_pts(s)) < 0) @@ -702,15 +712,10 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt) did_split = av_packet_split_side_data(pkt); - if (!s->internal->header_written && s->oformat->write_header) { - ret = s->oformat->write_header(s); - if (ret >= 0 && s->pb && s->pb->error < 0) - ret = s->pb->error; + if (!s->internal->header_written) { + ret = write_header_internal(s); if (ret < 0) goto fail; - if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS) - avio_flush(s->pb); - s->internal->header_written = 1; } if ((pkt->flags & AV_PKT_FLAG_UNCODED_FRAME)) { @@ -1146,19 +1151,14 @@ int av_write_trailer(AVFormatContext *s) goto fail; } - if (!s->internal->header_written && s->oformat->write_header) { - ret = s->oformat->write_header(s); - if (ret >= 0 && s->pb && s->pb->error < 0) - ret = s->pb->error; + if (!s->internal->header_written) { + ret = write_header_internal(s); if (ret < 0) goto fail; - if (s->flush_packets && s->pb && s->pb->error >= 0 && s->flags & AVFMT_FLAG_FLUSH_PACKETS) - avio_flush(s->pb); - s->internal->header_written = 1; } fail: - if ((s->internal->header_written || !s->oformat->write_header) && s->oformat->write_trailer) + if (s->internal->header_written && s->oformat->write_trailer) if (ret >= 0) { ret = s->oformat->write_trailer(s); } else { |