diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2012-10-01 04:18:02 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2012-10-12 15:09:51 +0200 |
commit | 6d5600e8556a632ca62a2807d994c40251db3bdd (patch) | |
tree | dc1c5040590aa58728c85ba29be488155c2fbb8f /libswscale | |
parent | 22c8cbc0da8be2ba80190d42d381f63da389734f (diff) | |
download | ffmpeg-6d5600e8556a632ca62a2807d994c40251db3bdd.tar.gz |
avutil: add yuva422p and yuva444p formats
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 440cce7a09..4001606a1b 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -108,6 +108,8 @@ static const FormatEntry format_entries[AV_PIX_FMT_NB] = { [AV_PIX_FMT_YUV440P] = { 1, 1 }, [AV_PIX_FMT_YUVJ440P] = { 1, 1 }, [AV_PIX_FMT_YUVA420P] = { 1, 1 }, + [AV_PIX_FMT_YUVA422P] = { 1, 1 }, + [AV_PIX_FMT_YUVA444P] = { 1, 1 }, [AV_PIX_FMT_RGB48BE] = { 1, 1 }, [AV_PIX_FMT_RGB48LE] = { 1, 1 }, [AV_PIX_FMT_RGB565BE] = { 1, 1 }, |