[FFmpeg-cvslog] libaom: remove references to yuva444p pixfmt
James Almer
git at videolan.org
Wed Feb 20 19:07:49 EET 2019
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Thu Oct 25 23:12:05 2018 -0300| [8d80046a0ff72652438ed3ea361d59a58a9a082f] | committer: James Almer
libaom: remove references to yuva444p pixfmt
Support for it was apparently never in the codebase, and the enum
value was recently removed from the public headers [1]
[1] https://aomedia.googlesource.com/aom/+/f1570f0c2f70832dd170285f8de60bd2379c8efa
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8d80046a0ff72652438ed3ea361d59a58a9a082f
---
libavcodec/libaom.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/libavcodec/libaom.c b/libavcodec/libaom.c
index 512095b339..bfc25ebe38 100644
--- a/libavcodec/libaom.c
+++ b/libavcodec/libaom.c
@@ -44,8 +44,6 @@ enum AVPixelFormat ff_aom_imgfmt_to_pixfmt(aom_img_fmt_t img, int depth)
return AV_PIX_FMT_YUV422P;
case AOM_IMG_FMT_I444:
return AV_PIX_FMT_YUV444P;
- case AOM_IMG_FMT_444A:
- return AV_PIX_FMT_YUVA444P;
HIGH_DEPTH(420)
HIGH_DEPTH(422)
HIGH_DEPTH(444)
@@ -65,8 +63,6 @@ aom_img_fmt_t ff_aom_pixfmt_to_imgfmt(enum AVPixelFormat pix)
return AOM_IMG_FMT_I422;
case AV_PIX_FMT_YUV444P:
return AOM_IMG_FMT_I444;
- case AV_PIX_FMT_YUVA444P:
- return AOM_IMG_FMT_444A;
case AV_PIX_FMT_YUV420P10:
return AOM_IMG_FMT_I42016;
case AV_PIX_FMT_YUV422P10:
More information about the ffmpeg-cvslog
mailing list