diff options
author | Michael Niedermayer | 2004-10-22 01:51:17 +0000 |
---|---|---|
committer | Michael Niedermayer | 2004-10-22 01:51:17 +0000 |
commit | 5ba7c3d7c9c53afad5e13203011619cff579b7ba (patch) | |
tree | 829afba17ac0c20ff2651e9b9a44aca4d228f0bc /libavformat/au.c | |
parent | a7b42d28da8b680c75db2ecf129e5f438e35797b (diff) |
set keyframe flag at a more central place instead of in every demuxer for containers which only store intra only streams
Originally committed as revision 3620 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/au.c')
-rw-r--r-- | libavformat/au.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/au.c b/libavformat/au.c index 1721902623..1709c874ec 100644 --- a/libavformat/au.c +++ b/libavformat/au.c @@ -164,7 +164,6 @@ static int au_read_packet(AVFormatContext *s, if (av_new_packet(pkt, MAX_SIZE)) return AVERROR_IO; pkt->stream_index = 0; - pkt->flags |= PKT_FLAG_KEY; ret = get_buffer(&s->pb, pkt->data, pkt->size); if (ret < 0) |