diff options
author | Michael Bradshaw <mbradshaw@sorensonmedia.com> | 2012-05-15 17:32:33 -0600 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-05-16 03:13:35 +0200 |
commit | 1f3f7bd4443bcf7637c8eee05f2bad8296e5b765 (patch) | |
tree | 86c9bfa4058faa0649564026008b9caad5929728 /libavformat | |
parent | bb008f0ad1b1d303c9f71cba0f81df892f12a07a (diff) | |
download | ffmpeg-1f3f7bd4443bcf7637c8eee05f2bad8296e5b765.tar.gz |
Add AVFMT_SEEK_TO_PTS to nut demuxer flags
Signed-off-by: Michael Bradshaw <mbradshaw@sorensonmedia.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/nutdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c index 04e1dcfd0f..cd0dd94bf9 100644 --- a/libavformat/nutdec.c +++ b/libavformat/nutdec.c @@ -988,6 +988,7 @@ static int nut_read_close(AVFormatContext *s) AVInputFormat ff_nut_demuxer = { .name = "nut", .long_name = NULL_IF_CONFIG_SMALL("NUT format"), + .flags = AVFMT_SEEK_TO_PTS, .priv_data_size = sizeof(NUTContext), .read_probe = nut_probe, .read_header = nut_read_header, |