diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2003-04-23 02:04:40 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2003-04-23 02:04:40 +0000 |
commit | e738cee9c4feb258d57bf4b4975e12f561f9eb4f (patch) | |
tree | 79472f1f6c6ac8cfb038f42f7920276281a0f572 /libavformat/dv1394.c | |
parent | 80097bbf712ca2f577b375d6ba94e3957b2c2e78 (diff) | |
download | ffmpeg-e738cee9c4feb258d57bf4b4975e12f561f9eb4f.tar.gz |
Complete support for OpenDML AVIs and AVIs > 2Gb.
Originally committed as revision 1814 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dv1394.c')
-rw-r--r-- | libavformat/dv1394.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/dv1394.c b/libavformat/dv1394.c index 31d583c265..2eff220f68 100644 --- a/libavformat/dv1394.c +++ b/libavformat/dv1394.c @@ -184,6 +184,7 @@ static inline int __get_frame(struct dv1394_data *dv, AVPacket *pkt) pkt->size = dv->frame_size; pkt->pts = dv->pts; pkt->stream_index = dv->stream; + pkt->flags |= PKT_FLAG_KEY; dv->stream ^= 1; |