Commit 18074b30 authored by Aman Gupta's avatar Aman Gupta

avformat/hlsenc: set AVFMT_NODIMENSIONS

Same as previous commit but for mpegts inside HLS.
Signed-off-by: 's avatarAman Gupta <aman@tmm1.net>
parent 6f50be87
...@@ -2875,7 +2875,7 @@ AVOutputFormat ff_hls_muxer = { ...@@ -2875,7 +2875,7 @@ AVOutputFormat ff_hls_muxer = {
.audio_codec = AV_CODEC_ID_AAC, .audio_codec = AV_CODEC_ID_AAC,
.video_codec = AV_CODEC_ID_H264, .video_codec = AV_CODEC_ID_H264,
.subtitle_codec = AV_CODEC_ID_WEBVTT, .subtitle_codec = AV_CODEC_ID_WEBVTT,
.flags = AVFMT_NOFILE | AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH, .flags = AVFMT_NOFILE | AVFMT_GLOBALHEADER | AVFMT_ALLOW_FLUSH | AVFMT_NODIMENSIONS,
.init = hls_init, .init = hls_init,
.write_header = hls_write_header, .write_header = hls_write_header,
.write_packet = hls_write_packet, .write_packet = hls_write_packet,
......
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