diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-01-22 10:56:42 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-27 10:38:34 +0100 |
commit | ac84395d6a31fc990fd28895bcdb5789de7606b8 (patch) | |
tree | f0888377438d50858924b0e1953cea0e7c1817b8 /libavcodec/avcodec.h | |
parent | 8b9b6041d7d4fe284deecc6075a3ce68d715e971 (diff) | |
download | ffmpeg-ac84395d6a31fc990fd28895bcdb5789de7606b8.tar.gz |
lavc: remove disabled FF_API_PARSE_FRAME cruft.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 6ba2ac982a..a9bce7a746 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -603,10 +603,6 @@ typedef struct RcOverride{ * assume the buffer was allocated by avcodec_default_get_buffer. */ #define CODEC_CAP_DR1 0x0002 -#if FF_API_PARSE_FRAME -/* If 'parse_only' field is true, then avcodec_parse_frame() can be used. */ -#define CODEC_CAP_PARSE_ONLY 0x0004 -#endif #define CODEC_CAP_TRUNCATED 0x0008 /* Codec can export data for HW decoding (XvMC). */ #define CODEC_CAP_HWACCEL 0x0010 @@ -1610,16 +1606,6 @@ typedef struct AVCodecContext { */ int block_align; -#if FF_API_PARSE_FRAME - /** - * If true, only parsing is done. The frame data is returned. - * Only MPEG audio decoders support this now. - * - encoding: unused - * - decoding: Set by user - */ - attribute_deprecated int parse_only; -#endif - /** * 0-> h263 quant 1-> mpeg quant * - encoding: Set by user. |