Browse Source

avformat/dashenc: Pass flags to child context

This is needed as the bitexact flag is not in the codecpar context, and thus not copied

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.1
Michael Niedermayer 9 years ago
parent
commit
0c9ad94e97
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavformat/dashenc.c

+ 1
- 0
libavformat/dashenc.c View File

@@ -632,6 +632,7 @@ static int dash_write_header(AVFormatContext *s)
st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
st->time_base = s->streams[i]->time_base;
ctx->avoid_negative_ts = s->avoid_negative_ts;
ctx->flags = s->flags;

ctx->pb = avio_alloc_context(os->iobuf, sizeof(os->iobuf), AVIO_FLAG_WRITE, os, NULL, dash_write, NULL);
if (!ctx->pb) {


Loading…
Cancel
Save