Browse Source

avformat/segment: 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
4104f18358
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavformat/segment.c

+ 1
- 0
libavformat/segment.c View File

@@ -162,6 +162,7 @@ static int segment_mux_init(AVFormatContext *s)
oc->opaque = s->opaque;
oc->io_close = s->io_close;
oc->io_open = s->io_open;
oc->flags = s->flags;

for (i = 0; i < s->nb_streams; i++) {
AVStream *st;


Loading…
Cancel
Save