From 1f3f7bd4443bcf7637c8eee05f2bad8296e5b765 Mon Sep 17 00:00:00 2001 From: Michael Bradshaw Date: Tue, 15 May 2012 17:32:33 -0600 Subject: [PATCH] Add AVFMT_SEEK_TO_PTS to nut demuxer flags Signed-off-by: Michael Bradshaw Signed-off-by: Michael Niedermayer --- libavformat/nutdec.c | 1 + 1 file changed, 1 insertion(+) 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,