diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-01-21 13:28:42 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-01-23 20:16:42 +0100 |
commit | d336bfcf69fee159e9dba5e5e486ddb1aba61aab (patch) | |
tree | 9dbef179e659032a3dc58fd83b7bb1e584e1d9d8 /libavutil | |
parent | c0c4d7a0a556ec66e3068d36a883e84d1efb0690 (diff) | |
download | ffmpeg-streaming-d336bfcf69fee159e9dba5e5e486ddb1aba61aab.zip ffmpeg-streaming-d336bfcf69fee159e9dba5e5e486ddb1aba61aab.tar.gz |
pixdesc: fix and extend doxy for av_pix_fmt_get_chroma_sub_sample()
The parameters in the docs are currently swapped.
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/pixdesc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/pixdesc.h b/libavutil/pixdesc.h index fe06d94..aea1e38 100644 --- a/libavutil/pixdesc.h +++ b/libavutil/pixdesc.h @@ -268,8 +268,8 @@ enum AVPixelFormat av_pix_fmt_desc_get_id(const AVPixFmtDescriptor *desc); * the pixel format AVPixFmtDescriptor. * * @param[in] pix_fmt the pixel format - * @param[out] h_shift store log2_chroma_h - * @param[out] v_shift store log2_chroma_w + * @param[out] h_shift store log2_chroma_w (horizontal/width shift) + * @param[out] v_shift store log2_chroma_h (vertical/height shift) * * @return 0 on success, AVERROR(ENOSYS) on invalid or unknown pixel format */ |