summaryrefslogtreecommitdiff
path: root/libavformat/rm.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-03-17 01:25:01 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-03-17 01:25:01 +0000
commitf3356e9c9eb8dc62925aaecf2ceec84106e06c6e (patch)
treebdadaff376c4d694349c32c1b347d5e30d83fb3d /libavformat/rm.c
parentcc973ecbe77ee6c273e2372ad24bb3aff0be5440 (diff)
more fine grained discarding of packets
Originally committed as revision 4051 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rm.c')
-rw-r--r--libavformat/rm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/rm.c b/libavformat/rm.c
index fd7e955c28..bea8c4bb2c 100644
--- a/libavformat/rm.c
+++ b/libavformat/rm.c
@@ -854,7 +854,8 @@ resync:
rm->remaining_len-= len;
}
- if(st->discard){
+ if( (st->discard >= AVDISCARD_NONKEY && !(flags&2))
+ || st->discard >= AVDISCARD_ALL){
url_fskip(pb, len);
goto resync;
}