You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
lavf: Remove codec_tag from dashenc and smoothstreamingenc
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.
(cherry picked from commit 61f589e31e
)
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
committed by
Derek Buitenhuis
parent
d32a6c36e4
commit
d086e40459
@@ -1089,7 +1089,6 @@ AVOutputFormat ff_dash_muxer = {
|
||||
.write_packet = dash_write_packet,
|
||||
.write_trailer = dash_write_trailer,
|
||||
.deinit = dash_free,
|
||||
.codec_tag = (const AVCodecTag* const []){ ff_mp4_obj_type, 0 },
|
||||
.check_bitstream = dash_check_bitstream,
|
||||
.priv_class = &dash_class,
|
||||
};
|
||||
|
@@ -647,6 +647,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,
|
||||
};
|
||||
|
Reference in New Issue
Block a user