]> git.sesse.net Git - ffmpeg/blob - libavcodec/libaomdec.c
Merge commit '9b4c3f5aadf54ffd2a6e15746b1fd736379883c4'
[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     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pic->format);
65     int i;
66
67     for (i = 0; i < desc->nb_components; i++) {
68         int w = img->d_w;
69         int h = img->d_h;
70         int x, y;
71
72         if (i) {
73             w = (w + img->x_chroma_shift) >> img->x_chroma_shift;
74             h = (h + img->y_chroma_shift) >> img->y_chroma_shift;
75         }
76
77         for (y = 0; y < h; y++) {
78             uint16_t *src = (uint16_t *)(img->planes[i] + y * img->stride[i]);
79             uint8_t *dst = pic->data[i] + y * pic->linesize[i];
80             for (x = 0; x < w; x++)
81                 *dst++ = *src++;
82         }
83     }
84 }
85
86 // returns 0 on success, AVERROR_INVALIDDATA otherwise
87 static int set_pix_fmt(AVCodecContext *avctx, struct aom_image *img)
88 {
89     static const enum AVColorRange color_ranges[] = {
90         AVCOL_RANGE_MPEG, AVCOL_RANGE_JPEG
91     };
92     avctx->color_range = color_ranges[img->range];
93     avctx->color_primaries = img->cp;
94     avctx->colorspace  = img->mc;
95     avctx->color_trc   = img->tc;
96
97     switch (img->fmt) {
98     case AOM_IMG_FMT_I420:
99     case AOM_IMG_FMT_I42016:
100         if (img->bit_depth == 8) {
101             avctx->pix_fmt = img->monochrome ?
102                              AV_PIX_FMT_GRAY8 : AV_PIX_FMT_YUV420P;
103             avctx->profile = FF_PROFILE_AV1_MAIN;
104             return 0;
105         } else if (img->bit_depth == 10) {
106             avctx->pix_fmt = img->monochrome ?
107                              AV_PIX_FMT_GRAY10 : AV_PIX_FMT_YUV420P10;
108             avctx->profile = FF_PROFILE_AV1_MAIN;
109             return 0;
110         } else if (img->bit_depth == 12) {
111             avctx->pix_fmt = img->monochrome ?
112                              AV_PIX_FMT_GRAY12 : AV_PIX_FMT_YUV420P12;
113             avctx->profile = FF_PROFILE_AV1_PROFESSIONAL;
114             return 0;
115         } else {
116             return AVERROR_INVALIDDATA;
117         }
118     case AOM_IMG_FMT_I422:
119     case AOM_IMG_FMT_I42216:
120         if (img->bit_depth == 8) {
121             avctx->pix_fmt = AV_PIX_FMT_YUV422P;
122             avctx->profile = FF_PROFILE_AV1_PROFESSIONAL;
123             return 0;
124         } else if (img->bit_depth == 10) {
125             avctx->pix_fmt = AV_PIX_FMT_YUV422P10;
126             avctx->profile = FF_PROFILE_AV1_PROFESSIONAL;
127             return 0;
128         } else if (img->bit_depth == 12) {
129             avctx->pix_fmt = AV_PIX_FMT_YUV422P12;
130             avctx->profile = FF_PROFILE_AV1_PROFESSIONAL;
131             return 0;
132         } else {
133             return AVERROR_INVALIDDATA;
134         }
135     case AOM_IMG_FMT_I444:
136     case AOM_IMG_FMT_I44416:
137         if (img->bit_depth == 8) {
138             avctx->pix_fmt = AV_PIX_FMT_YUV444P;
139             avctx->profile = FF_PROFILE_AV1_HIGH;
140             return 0;
141         } else if (img->bit_depth == 10) {
142             avctx->pix_fmt = AV_PIX_FMT_YUV444P10;
143             avctx->profile = FF_PROFILE_AV1_HIGH;
144             return 0;
145         } else if (img->bit_depth == 12) {
146             avctx->pix_fmt = AV_PIX_FMT_YUV444P12;
147             avctx->profile = FF_PROFILE_AV1_PROFESSIONAL;
148             return 0;
149         } else {
150             return AVERROR_INVALIDDATA;
151         }
152
153     default:
154         return AVERROR_INVALIDDATA;
155     }
156 }
157
158 static int aom_decode(AVCodecContext *avctx, void *data, int *got_frame,
159                       AVPacket *avpkt)
160 {
161     AV1DecodeContext *ctx = avctx->priv_data;
162     AVFrame *picture      = data;
163     const void *iter      = NULL;
164     struct aom_image *img;
165     int ret;
166
167     if (aom_codec_decode(&ctx->decoder, avpkt->data, avpkt->size, NULL) !=
168         AOM_CODEC_OK) {
169         const char *error  = aom_codec_error(&ctx->decoder);
170         const char *detail = aom_codec_error_detail(&ctx->decoder);
171
172         av_log(avctx, AV_LOG_ERROR, "Failed to decode frame: %s\n", error);
173         if (detail)
174             av_log(avctx, AV_LOG_ERROR, "  Additional information: %s\n",
175                    detail);
176         return AVERROR_INVALIDDATA;
177     }
178
179     if ((img = aom_codec_get_frame(&ctx->decoder, &iter))) {
180         if (img->d_w > img->w || img->d_h > img->h) {
181             av_log(avctx, AV_LOG_ERROR, "Display dimensions %dx%d exceed storage %dx%d\n",
182                    img->d_w, img->d_h, img->w, img->h);
183             return AVERROR_EXTERNAL;
184         }
185
186         if ((ret = set_pix_fmt(avctx, img)) < 0) {
187             av_log(avctx, AV_LOG_ERROR, "Unsupported output colorspace (%d) / bit_depth (%d)\n",
188                    img->fmt, img->bit_depth);
189             return ret;
190         }
191
192         if ((int)img->d_w != avctx->width || (int)img->d_h != avctx->height) {
193             av_log(avctx, AV_LOG_INFO, "dimension change! %dx%d -> %dx%d\n",
194                    avctx->width, avctx->height, img->d_w, img->d_h);
195             ret = ff_set_dimensions(avctx, img->d_w, img->d_h);
196             if (ret < 0)
197                 return ret;
198         }
199         if ((ret = ff_get_buffer(avctx, picture, 0)) < 0)
200             return ret;
201         if ((img->fmt & AOM_IMG_FMT_HIGHBITDEPTH) && img->bit_depth == 8)
202             image_copy_16_to_8(picture, img);
203         else
204             av_image_copy(picture->data, picture->linesize, (const uint8_t **)img->planes,
205                           img->stride, avctx->pix_fmt, img->d_w, img->d_h);
206         *got_frame = 1;
207     }
208     return avpkt->size;
209 }
210
211 static av_cold int aom_free(AVCodecContext *avctx)
212 {
213     AV1DecodeContext *ctx = avctx->priv_data;
214     aom_codec_destroy(&ctx->decoder);
215     return 0;
216 }
217
218 static av_cold int av1_init(AVCodecContext *avctx)
219 {
220     return aom_init(avctx, &aom_codec_av1_dx_algo);
221 }
222
223 AVCodec ff_libaom_av1_decoder = {
224     .name           = "libaom-av1",
225     .long_name      = NULL_IF_CONFIG_SMALL("libaom AV1"),
226     .type           = AVMEDIA_TYPE_VIDEO,
227     .id             = AV_CODEC_ID_AV1,
228     .priv_data_size = sizeof(AV1DecodeContext),
229     .init           = av1_init,
230     .close          = aom_free,
231     .decode         = aom_decode,
232     .capabilities   = AV_CODEC_CAP_AUTO_THREADS | AV_CODEC_CAP_DR1,
233     .profiles       = NULL_IF_CONFIG_SMALL(ff_av1_profiles),
234     .wrapper_name   = "libaom",
235 };