From e738cee9c4feb258d57bf4b4975e12f561f9eb4f Mon Sep 17 00:00:00 2001 From: Roman Shaposhnik Date: Wed, 23 Apr 2003 02:04:40 +0000 Subject: Complete support for OpenDML AVIs and AVIs > 2Gb. Originally committed as revision 1814 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/dv.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavformat/dv.c') diff --git a/libavformat/dv.c b/libavformat/dv.c index 1577c8dcaa..1870b2634c 100644 --- a/libavformat/dv.c +++ b/libavformat/dv.c @@ -83,6 +83,7 @@ static int dv_read_packet(AVFormatContext *s, AVPacket *pkt) pkt->data = c->buf; pkt->size = c->size; pkt->stream_index = c->is_audio; + pkt->flags |= PKT_FLAG_KEY; c->is_audio = !c->is_audio; return c->size; -- cgit v1.2.3