diff options
author | Aman Gupta | 2018-05-09 19:21:10 -0700 |
---|---|---|
committer | Aman Gupta | 2018-05-12 11:48:39 -0700 |
commit | 6f50be876016979c43a3e468290f363a2f095f33 (patch) | |
tree | 20748f2fbee57ab5b5afea5af1187af7a3534092 | |
parent | 1c2e5fc4546f2c80212add77015003de200f7963 (diff) |
avformat/mpegtsenc: set AVFMT_NODIMENSIONS
This allows remuxing streams from one mpegts container to another,
without requiring avformat_find_stream_info() (or using `ffmpeg
-probesize 32` on the cli).
Signed-off-by: Aman Gupta <aman@tmm1.net>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/mpegtsenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index 8b0736ac4e..3339e26d50 100644 --- a/libavformat/mpegtsenc.c +++ b/libavformat/mpegtsenc.c @@ -1983,6 +1983,6 @@ AVOutputFormat ff_mpegts_muxer = { .write_trailer = mpegts_write_end, .deinit = mpegts_deinit, .check_bitstream = mpegts_check_bitstream, - .flags = AVFMT_ALLOW_FLUSH | AVFMT_VARIABLE_FPS, + .flags = AVFMT_ALLOW_FLUSH | AVFMT_VARIABLE_FPS | AVFMT_NODIMENSIONS, .priv_class = &mpegts_muxer_class, }; |