diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-03-27 13:22:07 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-03-27 13:22:07 +0000 |
commit | 9b489e02483e2773ac569d36fd88bcfd180db60d (patch) | |
tree | 64703968b643c95646e81dd6b210a039e080bb63 /libavcodec | |
parent | c08b9856374b9ab2885dc026fca1abce54fc43bd (diff) | |
download | ffmpeg-9b489e02483e2773ac569d36fd88bcfd180db60d.tar.gz |
Clearer CODEC_CAP_DR1 documentation.
Originally committed as revision 22700 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index ad5ce0b13a..820dfcd5c1 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -604,8 +604,9 @@ typedef struct RcOverride{ #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 ///< Decoder can use draw_horiz_band callback. /** - * Codec uses get_buffer() for allocating buffers. - * direct rendering method 1 + * Codec uses get_buffer() for allocating buffers and supports custom allocators. + * If not set, it might not use get_buffer() at all or use operations that + * assume the buffer was allocated by avcodec_default_get_buffer. */ #define CODEC_CAP_DR1 0x0002 /* If 'parse_only' field is true, then avcodec_parse_frame() can be used. */ |