summaryrefslogtreecommitdiff
path: root/libavformat/dv.c
diff options
context:
space:
mode:
authorRoman Shaposhnik <roman@shaposhnik.org>2003-04-23 02:04:40 +0000
committerRoman Shaposhnik <roman@shaposhnik.org>2003-04-23 02:04:40 +0000
commite738cee9c4feb258d57bf4b4975e12f561f9eb4f (patch)
tree79472f1f6c6ac8cfb038f42f7920276281a0f572 /libavformat/dv.c
parent80097bbf712ca2f577b375d6ba94e3957b2c2e78 (diff)
Complete support for OpenDML AVIs and AVIs > 2Gb.
Originally committed as revision 1814 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dv.c')
-rw-r--r--libavformat/dv.c1
1 files changed, 1 insertions, 0 deletions
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;