]> git.sesse.net Git - ffmpeg/blob - libavcodec/libaomdec.c
1d077e035e397c01c5e310516587c3e3c291db2d
[ffmpeg] / libavcodec / libaomdec.c
1 /*
2  * Copyright (c) 2010, Google, Inc.
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 /**
22  * @file
23  * AV1 decoder support via libaom
24  */
25
26 #include <aom/aom_decoder.h>
27 #include <aom/aomdx.h>
28
29 #include "libavutil/common.h"
30 #include "libavutil/imgutils.h"
31
32 #include "avcodec.h"
33 #include "internal.h"
34 #include "profiles.h"
35
36 typedef struct AV1DecodeContext {
37     struct aom_codec_ctx decoder;
38 } AV1DecodeContext;
39
40 static av_cold int aom_init(AVCodecContext *avctx,
41                             const struct aom_codec_iface *iface)
42 {
43     AV1DecodeContext *ctx           = avctx->priv_data;
44     struct aom_codec_dec_cfg deccfg = {
45         /* token partitions+1 would be a decent choice */
46         .threads = FFMIN(avctx->thread_count, 16)
47     };
48
49     av_log(avctx, AV_LOG_INFO, "%s\n", aom_codec_version_str());
50     av_log(avctx, AV_LOG_VERBOSE, "%s\n", aom_codec_build_config());
51
52     if (aom_codec_dec_init(&ctx->decoder, iface, &deccfg, 0) != AOM_CODEC_OK) {
53         const char *error = aom_codec_error(&ctx->decoder);
54         av_log(avctx, AV_LOG_ERROR, "Failed to initialize decoder: %s\n",
55                error);
56         return AVERROR(EINVAL);
57     }
58
59     return 0;
60 }
61
62 static void image_copy_16_to_8(AVFrame *pic, struct aom_image *img)
63 {
64     int i;
65
66     for (i = 0; i < 3; i++) {
67         int w = img->d_w;
68         int h = img->d_h;
69         int x, y;
70
71         if (i) {
72             w = (w + img->x_chroma_shift) >> img->x_chroma_shift;
73             h = (h + img->y_chroma_shift) >> img->y_chroma_shift;
74         }
75
76         for (y = 0; y < h; y++) {
77             uint16_t *src = (uint16_t *)(img->planes[i] + y * img->stride[i]);
78             uint8_t *dst = pic->data[i] + y * pic->linesize[i];
79             for (x = 0; x < w; x++)
80                 *dst++ = *src++;
81         }
82     }
83 }
84
85 // returns 0 on success, AVERROR_INVALIDDATA otherwise
86 static int set_pix_fmt(AVCodecContext *avctx, struct aom_image *img)
87 {
88     static const enum AVColorRange color_ranges[] = {
89         AVCOL_RANGE_MPEG, AVCOL_RANGE_JPEG
90     };
91     avctx->color_range = color_ranges[img->range];
92     avctx->colorspace  = img->mc;
93
94     switch (img->fmt) {
95     case AOM_IMG_FMT_I420:
96         avctx->pix_fmt = AV_PIX_FMT_YUV420P;
97         avctx->profile = FF_PROFILE_AV1_MAIN;
98         return 0;
99     case AOM_IMG_FMT_I422:
100         avctx->pix_fmt = AV_PIX_FMT_YUV422P;
101         avctx->profile = FF_PROFILE_AV1_PROFESSIONAL;
102         return 0;
103     case AOM_IMG_FMT_I444:
104         avctx->pix_fmt = avctx->colorspace == AVCOL_SPC_RGB ?
105                          AV_PIX_FMT_GBRP : AV_PIX_FMT_YUV444P;
106         avctx->profile = FF_PROFILE_AV1_HIGH;
107         return 0;
108     case AOM_IMG_FMT_I42016:
109         if (img->bit_depth == 8) {
110             avctx->pix_fmt = AV_PIX_FMT_YUV420P;
111             avctx->profile = FF_PROFILE_AV1_MAIN;
112             return 0;
113         } else if (img->bit_depth == 10) {
114             avctx->pix_fmt = AV_PIX_FMT_YUV420P10;
115             avctx->profile = FF_PROFILE_AV1_MAIN;
116             return 0;
117         } else if (img->bit_depth == 12) {
118             avctx->pix_fmt = AV_PIX_FMT_YUV420P12;
119             avctx->profile = FF_PROFILE_AV1_PROFESSIONAL;
120             return 0;
121         } else {
122             return AVERROR_INVALIDDATA;
123         }
124     case AOM_IMG_FMT_I42216:
125         if (img->bit_depth == 8) {
126             avctx->pix_fmt = AV_PIX_FMT_YUV422P;
127             avctx->profile = FF_PROFILE_AV1_PROFESSIONAL;
128             return 0;
129         } else if (img->bit_depth == 10) {
130             avctx->pix_fmt = AV_PIX_FMT_YUV422P10;
131             avctx->profile = FF_PROFILE_AV1_PROFESSIONAL;
132             return 0;
133         } else if (img->bit_depth == 12) {
134             avctx->pix_fmt = AV_PIX_FMT_YUV422P12;
135             avctx->profile = FF_PROFILE_AV1_PROFESSIONAL;
136             return 0;
137         } else {
138             return AVERROR_INVALIDDATA;
139         }
140     case AOM_IMG_FMT_I44416:
141         if (img->bit_depth == 8) {
142             avctx->pix_fmt = avctx->colorspace == AVCOL_SPC_RGB ?
143                              AV_PIX_FMT_GBRP : AV_PIX_FMT_YUV444P;
144             avctx->profile = FF_PROFILE_AV1_HIGH;
145             return 0;
146         } else if (img->bit_depth == 10) {
147             avctx->pix_fmt = avctx->colorspace == AVCOL_SPC_RGB ?
148                              AV_PIX_FMT_GBRP10 : AV_PIX_FMT_YUV444P10;
149             avctx->profile = FF_PROFILE_AV1_HIGH;
150             return 0;
151         } else if (img->bit_depth == 12) {
152             avctx->pix_fmt = avctx->colorspace == AVCOL_SPC_RGB ?
153                              AV_PIX_FMT_GBRP12 : AV_PIX_FMT_YUV444P12;
154             avctx->profile = FF_PROFILE_AV1_PROFESSIONAL;
155             return 0;
156         } else {
157             return AVERROR_INVALIDDATA;
158         }
159
160     default:
161         return AVERROR_INVALIDDATA;
162     }
163 }
164
165 static int aom_decode(AVCodecContext *avctx, void *data, int *got_frame,
166                       AVPacket *avpkt)
167 {
168     AV1DecodeContext *ctx = avctx->priv_data;
169     AVFrame *picture      = data;
170     const void *iter      = NULL;
171     struct aom_image *img;
172     int ret;
173
174     if (aom_codec_decode(&ctx->decoder, avpkt->data, avpkt->size, NULL) !=
175         AOM_CODEC_OK) {
176         const char *error  = aom_codec_error(&ctx->decoder);
177         const char *detail = aom_codec_error_detail(&ctx->decoder);
178
179         av_log(avctx, AV_LOG_ERROR, "Failed to decode frame: %s\n", error);
180         if (detail)
181             av_log(avctx, AV_LOG_ERROR, "  Additional information: %s\n",
182                    detail);
183         return AVERROR_INVALIDDATA;
184     }
185
186     if ((img = aom_codec_get_frame(&ctx->decoder, &iter))) {
187         if (img->d_w > img->w || img->d_h > img->h) {
188             av_log(avctx, AV_LOG_ERROR, "Display dimensions %dx%d exceed storage %dx%d\n",
189                    img->d_w, img->d_h, img->w, img->h);
190             return AVERROR_EXTERNAL;
191         }
192
193         if ((ret = set_pix_fmt(avctx, img)) < 0) {
194             av_log(avctx, AV_LOG_ERROR, "Unsupported output colorspace (%d) / bit_depth (%d)\n",
195                    img->fmt, img->bit_depth);
196             return ret;
197         }
198
199         if ((int)img->d_w != avctx->width || (int)img->d_h != avctx->height) {
200             av_log(avctx, AV_LOG_INFO, "dimension change! %dx%d -> %dx%d\n",
201                    avctx->width, avctx->height, img->d_w, img->d_h);
202             ret = ff_set_dimensions(avctx, img->d_w, img->d_h);
203             if (ret < 0)
204                 return ret;
205         }
206         if ((ret = ff_get_buffer(avctx, picture, 0)) < 0)
207             return ret;
208         if ((img->fmt & AOM_IMG_FMT_HIGHBITDEPTH) && img->bit_depth == 8)
209             image_copy_16_to_8(picture, img);
210         else
211             av_image_copy(picture->data, picture->linesize, (const uint8_t **)img->planes,
212                           img->stride, avctx->pix_fmt, img->d_w, img->d_h);
213         *got_frame = 1;
214     }
215     return avpkt->size;
216 }
217
218 static av_cold int aom_free(AVCodecContext *avctx)
219 {
220     AV1DecodeContext *ctx = avctx->priv_data;
221     aom_codec_destroy(&ctx->decoder);
222     return 0;
223 }
224
225 static av_cold int av1_init(AVCodecContext *avctx)
226 {
227     return aom_init(avctx, &aom_codec_av1_dx_algo);
228 }
229
230 AVCodec ff_libaom_av1_decoder = {
231     .name           = "libaom-av1",
232     .long_name      = NULL_IF_CONFIG_SMALL("libaom AV1"),
233     .type           = AVMEDIA_TYPE_VIDEO,
234     .id             = AV_CODEC_ID_AV1,
235     .priv_data_size = sizeof(AV1DecodeContext),
236     .init           = av1_init,
237     .close          = aom_free,
238     .decode         = aom_decode,
239     .capabilities   = AV_CODEC_CAP_AUTO_THREADS | AV_CODEC_CAP_DR1,
240     .profiles       = NULL_IF_CONFIG_SMALL(ff_av1_profiles),
241     .wrapper_name   = "libaom",
242 };