From 3c90cc2ef21a928a7c11cf5a4583169025cdf847 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 4 Mar 2012 21:41:59 +0100 Subject: 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 --- libavformat/internal.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'libavformat/internal.h') diff --git a/libavformat/internal.h b/libavformat/internal.h index c30deb7732..ad300325cb 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -318,4 +318,13 @@ int ff_add_param_change(AVPacket *pkt, int32_t channels, */ int ff_framehash_write_header(AVFormatContext *s); +/** + * Read a transport packet from a media file. + * + * @param s media file handle + * @param pkt is filled + * @return 0 if OK, AVERROR_xxx on error + */ +int ff_read_packet(AVFormatContext *s, AVPacket *pkt); + #endif /* AVFORMAT_INTERNAL_H */ -- cgit v1.2.3