[FFmpeg-cvslog] r17908 - trunk/libavformat/rmdec.c
rbultje
subversion
Mon Mar 9 13:42:53 CET 2009
Author: rbultje
Date: Mon Mar 9 13:42:53 2009
New Revision: 17908
Log:
Move frame discarding out of the ff_rm_parse_packet() loop, and respect
rm->audio_pkt_cnt in case multiple packets should be read before the next
syncpoint in the file, so that ffplay -an on a file containing AAC audio
works. See "[PATCH] Make RM demuxer behave better with -an option" thread
on mailinglist.
Modified:
trunk/libavformat/rmdec.c
Modified: trunk/libavformat/rmdec.c
==============================================================================
--- trunk/libavformat/rmdec.c Mon Mar 9 13:25:13 2009 (r17907)
+++ trunk/libavformat/rmdec.c Mon Mar 9 13:42:53 2009 (r17908)
@@ -643,12 +643,6 @@ ff_rm_parse_packet (AVFormatContext *s,
} else
av_get_packet(pb, pkt, len);
- if( (st->discard >= AVDISCARD_NONKEY && !(*flags&2))
- || st->discard >= AVDISCARD_ALL){
- av_free_packet(pkt);
- return -1;
- }
-
pkt->stream_index = st->index;
#if 0
@@ -749,6 +743,16 @@ resync:
&seq, &flags, ×tamp) < 0)
goto resync;
+ if( (st->discard >= AVDISCARD_NONKEY && !(flags&2))
+ || st->discard >= AVDISCARD_ALL){
+ av_free_packet(pkt);
+ while (rm->audio_pkt_cnt > 0) {
+ ff_rm_retrieve_cache(s, s->pb, st, st->priv_data, pkt);
+ av_free_packet(pkt);
+ }
+ goto resync;
+ }
+
if((flags&2) && (seq&0x7F) == 1)
av_add_index_entry(st, pos, timestamp, 0, 0, AVINDEX_KEYFRAME);
}
More information about the ffmpeg-cvslog
mailing list