diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-12-19 23:26:18 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-12-19 23:26:18 +0000 |
commit | ceeacce68b465fd5bf9a0fd52962c36783cdf0d6 (patch) | |
tree | f3a10baa8d5124ee11bb224e9a453655bded78b4 /libavformat/oggdec.c | |
parent | 8293fea57e74fcea276b48b3e22905d2dbb7f68d (diff) | |
download | ffmpeg-ceeacce68b465fd5bf9a0fd52962c36783cdf0d6.tar.gz |
use proper url_is_streamed() API
instead of messing with ByteIOContext internal is_streamed field
Originally committed as revision 11276 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggdec.c')
-rw-r--r-- | libavformat/oggdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggdec.c b/libavformat/oggdec.c index 69279339f4..8e901379e5 100644 --- a/libavformat/oggdec.c +++ b/libavformat/oggdec.c @@ -438,7 +438,7 @@ ogg_get_length (AVFormatContext * s) int idx = -1, i; offset_t size, end; - if(s->pb->is_streamed) + if(url_is_streamed(s->pb)) return 0; // already set |