summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Bradshaw <mbradshaw@sorensonmedia.com>2012-05-15 17:32:33 -0600
committerMichael Niedermayer <michaelni@gmx.at>2012-05-16 03:13:35 +0200
commit1f3f7bd4443bcf7637c8eee05f2bad8296e5b765 (patch)
tree86c9bfa4058faa0649564026008b9caad5929728
parentbb008f0ad1b1d303c9f71cba0f81df892f12a07a (diff)
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>
-rw-r--r--libavformat/nutdec.c1
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,