diff options
author | Gyan Doshi <ffmpeg@gyani.pro> | 2021-08-11 11:50:13 +0530 |
---|---|---|
committer | Gyan Doshi <ffmpeg@gyani.pro> | 2021-08-22 17:55:31 +0530 |
commit | d905af0c2409c854dcd45a05fe4caf9ac49d82ad (patch) | |
tree | 89939fc236e27e160728340d6fa9c028b5c4abee /libavformat/mov.c | |
parent | da6aab45e42a41b2b5750f7f36cb7da7de26c4ed (diff) | |
download | ffmpeg-d905af0c2409c854dcd45a05fe4caf9ac49d82ad.tar.gz |
avformat/mov: add AVFMT_SHOW_IDS flag
The MOV muxer can store streamids as track ids but they aren't
visible when probing the result via lavf/dump or ffprobe due to
lack of this flag in the demuxer.
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 46bc7b5aa3..c556390525 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -8216,5 +8216,5 @@ const AVInputFormat ff_mov_demuxer = { .read_packet = mov_read_packet, .read_close = mov_read_close, .read_seek = mov_read_seek, - .flags = AVFMT_NO_BYTE_SEEK | AVFMT_SEEK_TO_PTS, + .flags = AVFMT_NO_BYTE_SEEK | AVFMT_SEEK_TO_PTS | AVFMT_SHOW_IDS, }; |