1 /*
2 * Copyright (c) 2013 Guillaume Martres <smarter@ubuntu.com>
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include <vpx/vpx_codec.h>
24
25 #if CONFIG_LIBVPX_VP9_ENCODER
26 #include <vpx/vpx_encoder.h>
27 #include <vpx/vp8cx.h>
28 #endif
29
33 };
34
35 #if CONFIG_LIBVPX_VP9_ENCODER
42 };
43
58 };
59 #endif
60
62 {
63 if ( vpx_codec_version_major() < 1
64 || (vpx_codec_version_major() == 1 && vpx_codec_version_minor() < 3))
67 #if CONFIG_LIBVPX_VP9_ENCODER
68 if ( vpx_codec_version_major() > 1
69 || (vpx_codec_version_major() == 1 && vpx_codec_version_minor() >= 4)) {
70 #ifdef VPX_CODEC_CAP_HIGHBITDEPTH
71 vpx_codec_caps_t codec_caps = vpx_codec_get_caps(vpx_codec_vp9_cx());
72 if (codec_caps & VPX_CODEC_CAP_HIGHBITDEPTH)
73 codec->
pix_fmts = vp9_pix_fmts_highbd;
74 else
75 #endif
76 codec->
pix_fmts = vp9_pix_fmts_highcol;
77 }
78 #endif
79 }
80 #if 0
82 {
83 switch (img) {
99 #if VPX_IMAGE_ABI_VERSION >= 3
104 #endif
106 }
107 }
108
109 vpx_img_fmt_t ff_vpx_pixfmt_to_imgfmt(
enum AVPixelFormat pix)
110 {
111 switch (pix) {
127 #if VPX_IMAGE_ABI_VERSION >= 3
132 #endif
133 default: return VPX_IMG_FMT_NONE;
134 }
135 }
136 #endif
packed YUV 4:2:2, 16bpp, Cb Y0 Cr Y1
planar YUV 4:4:0,20bpp, (1 Cr & Cb sample per 1x2 Y samples), little-endian
planar YUV 4:2:0, 15bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
packed RGB 8:8:8, 24bpp, RGBRGB...
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), little-endian, X=unused/undefined ...
#define AV_CODEC_CAP_EXPERIMENTAL
Codec is experimental and is thus avoided in favor of non experimental encoders.
packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), little-endian
planar YUV 4:4:4,36bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), big-endian
planar YUV 4:4:4, 30bpp, (1 Cr & Cb sample per 1x1 Y samples), little-endian
planar YUV 4:4:4, 48bpp, (1 Cr & Cb sample per 1x1 Y samples), big-endian
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
int capabilities
Codec capabilities.
planar YUV 4:2:2, 20bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
planar YUV 4:2:2, 32bpp, (1 Cr & Cb sample per 2x1 Y samples), big-endian
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
enum AVPixelFormat * pix_fmts
array of supported pixel formats, or NULL if unknown, array is terminated by -1
packed YUV 4:2:2, 16bpp, Y0 Cr Y1 Cb
packed RGB 8:8:8, 24bpp, BGRBGR...
planar YUV 4:2:0,18bpp, (1 Cr & Cb sample per 2x2 Y samples), little-endian
planar YUV 4:2:0, 24bpp, (1 Cr & Cb sample per 2x2 Y samples), big-endian
av_cold void ff_vp9_init_static(AVCodec *codec)
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
packed YUV 4:2:2, 16bpp, Y0 Cb Y1 Cr
planar YUV 4:4:0,24bpp, (1 Cr & Cb sample per 1x2 Y samples), little-endian
static enum AVPixelFormat vp9_pix_fmts_def[]
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), big-endian , X=unused/undefined
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
planar YUV 4:2:2,24bpp, (1 Cr & Cb sample per 2x1 Y samples), little-endian
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
AVPixelFormat
Pixel format.