diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-03-10 16:15:48 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-03-13 00:34:42 +0100 |
commit | 92ca292766b2213175a9fd19b979412372f2b256 (patch) | |
tree | 9276babc5d563840cfedfce1b271f3f095265830 /libavcodec/avcodec.h | |
parent | 1019cef329b508f0a9033b355cc18bf8026caf31 (diff) | |
download | ffmpeg-92ca292766b2213175a9fd19b979412372f2b256.tar.gz |
lavc: extend documentation for skip_idct, skip_loop_filter, skip_frame options
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 96b07b8c99..cb819f2558 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2728,21 +2728,21 @@ typedef struct AVCodecContext { #define FF_LEVEL_UNKNOWN -99 /** - * + * Skip loop filtering for selected frames. * - encoding: unused * - decoding: Set by user. */ enum AVDiscard skip_loop_filter; /** - * + * Skip IDCT/dequantization for selected frames. * - encoding: unused * - decoding: Set by user. */ enum AVDiscard skip_idct; /** - * + * Skip decoding for selected frames. * - encoding: unused * - decoding: Set by user. */ |