diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-03-04 21:41:59 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-03-20 20:12:16 +0100 |
commit | 3c90cc2ef21a928a7c11cf5a4583169025cdf847 (patch) | |
tree | f1cdaeec0d5115db10222ddb95c464b468821501 /libavformat/rtpdec_asf.c | |
parent | f63412fc741e9936b71141e7f15ab8aa39ad72f9 (diff) | |
download | ffmpeg-3c90cc2ef21a928a7c11cf5a4583169025cdf847.tar.gz |
lavf: deprecate av_read_packet().
The caller can achieve the same effect (i.e. getting raw unparsed/mangled
packets) with av_read_frame() and AVFMT_FLAG_NOPARSE |
AVFMT_FLAG_NOFILLIN
Diffstat (limited to 'libavformat/rtpdec_asf.c')
-rw-r--r-- | libavformat/rtpdec_asf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_asf.c b/libavformat/rtpdec_asf.c index 483b196d62..2dd367556d 100644 --- a/libavformat/rtpdec_asf.c +++ b/libavformat/rtpdec_asf.c @@ -256,7 +256,7 @@ static int asfrtp_parse_packet(AVFormatContext *s, PayloadContext *asf, for (;;) { int i; - res = av_read_packet(rt->asf_ctx, pkt); + res = ff_read_packet(rt->asf_ctx, pkt); rt->asf_pb_pos = avio_tell(pb); if (res != 0) break; |