diff options
author | James Almer <jamrial@gmail.com> | 2014-09-14 21:28:09 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2014-10-05 17:10:26 -0300 |
commit | ddc376816161bdb24caa0a6698f8a18b41c6f70a (patch) | |
tree | 543496d30e529cac2fa6aea1a9ebe6be59a1e7a4 /libavformat/avformat.h | |
parent | ecf457f3ac49e93f06edfe301db4bc2fdedca1ae (diff) | |
download | ffmpeg-ddc376816161bdb24caa0a6698f8a18b41c6f70a.tar.gz |
avformat: remove obsolete FF_API_READ_PACKET cruft
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 56c139905a..f189741af6 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -2052,24 +2052,6 @@ int av_find_best_stream(AVFormatContext *ic, AVCodec **decoder_ret, int flags); -#if FF_API_READ_PACKET -/** - * @deprecated use AVFMT_FLAG_NOFILLIN | AVFMT_FLAG_NOPARSE to read raw - * unprocessed packets - * - * Read a transport packet from a media file. - * - * This function is obsolete and should never be used. - * Use av_read_frame() instead. - * - * @param s media file handle - * @param pkt is filled - * @return 0 if OK, AVERROR_xxx on error - */ -attribute_deprecated -int av_read_packet(AVFormatContext *s, AVPacket *pkt); -#endif - /** * Return the next frame of a stream. * This function returns what is stored in the file, and does not validate |