Commit fbb6de2a authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '7fd10f66'

* commit '7fd10f66':
  hdsenc: Clear the previous codec tag when setting up the chained muxer
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents f3dcabef 7fd10f66
......@@ -396,6 +396,7 @@ static int hds_write_header(AVFormatContext *s)
goto fail;
}
avcodec_copy_context(st->codec, s->streams[i]->codec);
st->codec->codec_tag = 0;
st->sample_aspect_ratio = s->streams[i]->sample_aspect_ratio;
st->time_base = s->streams[i]->time_base;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment