[FFmpeg-cvslog] Enable conversions to YUV444P9/YUV444P10, they seem to work fine.
Reimar Döffinger
git at videolan.org
Mon Oct 3 21:32:17 CEST 2011
ffmpeg | branch: master | Reimar Döffinger <Reimar.Doeffinger at gmx.de> | Mon Oct 3 21:30:58 2011 +0200| [ae23b26995252da4524acc4fe15c8f580cfa7b8c] | committer: Reimar Döffinger
Enable conversions to YUV444P9/YUV444P10, they seem to work fine.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger at gmx.de>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ae23b26995252da4524acc4fe15c8f580cfa7b8c
---
libswscale/utils.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/libswscale/utils.c b/libswscale/utils.c
index a851d99..6fec4b7 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -138,10 +138,10 @@ const static FormatEntry format_entries[PIX_FMT_NB] = {
[PIX_FMT_YUV420P10LE] = { 1 , 1 },
[PIX_FMT_YUV422P10BE] = { 1 , 1 },
[PIX_FMT_YUV422P10LE] = { 1 , 1 },
- [PIX_FMT_YUV444P9BE] = { 1 , 0 },
- [PIX_FMT_YUV444P9LE] = { 1 , 0 },
- [PIX_FMT_YUV444P10BE] = { 1 , 0 },
- [PIX_FMT_YUV444P10LE] = { 1 , 0 },
+ [PIX_FMT_YUV444P9BE] = { 1 , 1 },
+ [PIX_FMT_YUV444P9LE] = { 1 , 1 },
+ [PIX_FMT_YUV444P10BE] = { 1 , 1 },
+ [PIX_FMT_YUV444P10LE] = { 1 , 1 },
};
int sws_isSupportedInput(enum PixelFormat pix_fmt)
More information about the ffmpeg-cvslog
mailing list