diff options
author | Matthew Einhorn <moiein2000@gmail.com> | 2011-08-17 01:58:33 -0400 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-08-18 01:02:34 +0200 |
commit | 39f9601c10f51fea519f16bccb4509f8ed3c51a7 (patch) | |
tree | 04ea94c758f7e75073a1f0ac3c10498dcb5bba10 /libavcodec/avcodec.h | |
parent | dc6c36ce46d4c4d7cb63503afc2ee44f00bf3725 (diff) | |
download | ffmpeg-39f9601c10f51fea519f16bccb4509f8ed3c51a7.tar.gz |
lavc: fix avcodec_find_best_pix_fmt() when there's more than 64 pixel formats
This fixed the problem where if there's more than 64 pixel formats
defined avcodec_find_best_pix_fmt() returns the wrong pixel format.
Signed-off-by: Matthew Einhorn <moiein2000@gmail.com>
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7c82d737bd..b0f3fcb8d2 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -3499,6 +3499,8 @@ int avcodec_get_pix_fmt_loss(enum PixelFormat dst_pix_fmt, enum PixelFormat src_ * The pixel formats from which it chooses one, are determined by the * pix_fmt_mask parameter. * + * Note, only the first 64 pixel formats will fit in pix_fmt_mask. + * * @code * src_pix_fmt = PIX_FMT_YUV420P; * pix_fmt_mask = (1 << PIX_FMT_YUV422P) || (1 << PIX_FMT_RGB24); |