lavf: Remove codec_tag from dashenc and smoothstreamingenc
Currently, the tags enforced and set on the segmenter muxer level mismatch what the mp4/ismv muxer uses (since 713efb2c0d013). Skip the codec_tag altogether here, to let the user (try to) set whichever codec/tag is preferred; the individual chained muxer will reject invalid codecs anyway. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
969f215957
commit
61f589e31e
@ -1272,6 +1272,5 @@ AVOutputFormat ff_dash_muxer = {
|
||||
.write_header = dash_write_header,
|
||||
.write_packet = dash_write_packet,
|
||||
.write_trailer = dash_write_trailer,
|
||||
.codec_tag = (const AVCodecTag* const []){ ff_mp4_obj_type, 0 },
|
||||
.priv_class = &dash_class,
|
||||
};
|
||||
|
@ -662,6 +662,5 @@ AVOutputFormat ff_smoothstreaming_muxer = {
|
||||
.write_header = ism_write_header,
|
||||
.write_packet = ism_write_packet,
|
||||
.write_trailer = ism_write_trailer,
|
||||
.codec_tag = (const AVCodecTag* const []){ ff_mp4_obj_type, 0 },
|
||||
.priv_class = &ism_class,
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user