summaryrefslogtreecommitdiff
path: root/libavformat/webm_chunk.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-02-29 23:49:19 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-03-26 02:12:10 +0100
commitf397dc33788547799d88a639bc74b68e832fc9a3 (patch)
tree2039bd77decd6d82dee556aa1370503df353951d /libavformat/webm_chunk.c
parent3d4dd9195f6892b3e9d04dc543d6211095248d22 (diff)
avformat/webm_chunk: Don't keep pointer to AVOutputFormat
It is no longer needed given that the function pointers of the child muxer's AVOutputFormat are no longer called directly. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/webm_chunk.c')
-rw-r--r--libavformat/webm_chunk.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/libavformat/webm_chunk.c b/libavformat/webm_chunk.c
index d4b2eb6dff..30ba30e929 100644
--- a/libavformat/webm_chunk.c
+++ b/libavformat/webm_chunk.c
@@ -53,19 +53,23 @@ typedef struct WebMChunkContext {
char *http_method;
uint64_t duration_written;
int64_t prev_pts;
- ff_const59 AVOutputFormat *oformat;
AVFormatContext *avf;
} WebMChunkContext;
static int chunk_mux_init(AVFormatContext *s)
{
WebMChunkContext *wc = s->priv_data;
+ ff_const59 AVOutputFormat *oformat;
AVFormatContext *oc;
AVStream *st, *ost = s->streams[0];
AVDictionary *dict = NULL;
int ret;
- ret = avformat_alloc_output_context2(&wc->avf, wc->oformat, NULL, NULL);
+ oformat = av_guess_format("webm", s->url, "video/webm");
+ if (!oformat)
+ return AVERROR_MUXER_NOT_FOUND;
+
+ ret = avformat_alloc_output_context2(&wc->avf, oformat, NULL, NULL);
if (ret < 0)
return ret;
oc = wc->avf;
@@ -156,9 +160,6 @@ static int webm_chunk_write_header(AVFormatContext *s)
if (s->nb_streams != 1) { return AVERROR_INVALIDDATA; }
wc->chunk_index = wc->chunk_start_index;
- wc->oformat = av_guess_format("webm", s->url, "video/webm");
- if (!wc->oformat)
- return AVERROR_MUXER_NOT_FOUND;
wc->prev_pts = AV_NOPTS_VALUE;
ret = chunk_mux_init(s);