diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-04-16 19:57:57 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-04-16 19:57:57 +0000 |
commit | 6814a25c676ae3f0eb73a2d7180b7fe9e62a62ec (patch) | |
tree | da72c189eac2bbac6b50036cfa10986db77ff4bc /libavcodec | |
parent | 6e023978cf10de75eb8cb20d79b91f721fb7662a (diff) | |
download | ffmpeg-6814a25c676ae3f0eb73a2d7180b7fe9e62a62ec.tar.gz |
meanigfull dr1 comment
Originally committed as revision 1779 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index d3c2bb13d2..1b0ca59e31 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -182,7 +182,11 @@ static const int Motion_Est_QTab[] = { ME_ZERO, ME_PHODS, ME_LOG, /* codec capabilities */ #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 ///< decoder can use draw_horiz_band callback -#define CODEC_CAP_DR1 0x0002 ///< direct rendering method 1 +/** + * Codec uses get_buffer() for allocating buffers. + * direct rendering method 1 + */ +#define CODEC_CAP_DR1 0x0002 /* if 'parse_only' field is true, then avcodec_parse_frame() can be used */ #define CODEC_CAP_PARSE_ONLY 0x0004 |