]> git.sesse.net Git - ffmpeg/blob - libavcodec/libdav1d.c
avcodec/libdav1d: use constants defined in the public API to limit thread count
[ffmpeg] / libavcodec / libdav1d.c
1 /*
2  * Copyright (c) 2018 Ronald S. Bultje <rsbultje gmail com>
3  * Copyright (c) 2018 James Almer <jamrial gmail com>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include <dav1d/dav1d.h>
23
24 #include "libavutil/avassert.h"
25 #include "libavutil/opt.h"
26
27 #include "avcodec.h"
28 #include "decode.h"
29 #include "internal.h"
30
31 typedef struct Libdav1dContext {
32     AVClass *class;
33     Dav1dContext *c;
34
35     Dav1dData data;
36     int tile_threads;
37 } Libdav1dContext;
38
39 static av_cold int libdav1d_init(AVCodecContext *c)
40 {
41     Libdav1dContext *dav1d = c->priv_data;
42     Dav1dSettings s;
43     int res;
44
45     av_log(c, AV_LOG_INFO, "libdav1d %s\n", dav1d_version());
46
47     dav1d_default_settings(&s);
48     s.n_tile_threads = dav1d->tile_threads;
49     s.n_frame_threads = FFMIN(c->thread_count ? c->thread_count : av_cpu_count(), DAV1D_MAX_FRAME_THREADS);
50
51     res = dav1d_open(&dav1d->c, &s);
52     if (res < 0)
53         return AVERROR(ENOMEM);
54
55     return 0;
56 }
57
58 static void libdav1d_flush(AVCodecContext *c)
59 {
60     Libdav1dContext *dav1d = c->priv_data;
61
62     dav1d_data_unref(&dav1d->data);
63     dav1d_flush(dav1d->c);
64 }
65
66 static void libdav1d_data_free(const uint8_t *data, void *opaque) {
67     AVBufferRef *buf = opaque;
68
69     av_buffer_unref(&buf);
70 }
71
72 static void libdav1d_frame_free(void *opaque, uint8_t *data) {
73     Dav1dPicture p = { 0 };
74
75     p.ref = opaque;
76     p.data[0] = (void *) 0x1; // this has to be non-NULL
77     dav1d_picture_unref(&p);
78 }
79
80 static const enum AVPixelFormat pix_fmt[][2] = {
81     [DAV1D_PIXEL_LAYOUT_I400] = { AV_PIX_FMT_GRAY8,   AV_PIX_FMT_GRAY10 },
82     [DAV1D_PIXEL_LAYOUT_I420] = { AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV420P10 },
83     [DAV1D_PIXEL_LAYOUT_I422] = { AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV422P10 },
84     [DAV1D_PIXEL_LAYOUT_I444] = { AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV444P10 },
85 };
86
87 // TODO: Update once 12bit support is added.
88 static const int profile[] = {
89     [DAV1D_PIXEL_LAYOUT_I400] = FF_PROFILE_AV1_MAIN,
90     [DAV1D_PIXEL_LAYOUT_I420] = FF_PROFILE_AV1_MAIN,
91     [DAV1D_PIXEL_LAYOUT_I422] = FF_PROFILE_AV1_PROFESSIONAL,
92     [DAV1D_PIXEL_LAYOUT_I444] = FF_PROFILE_AV1_HIGH,
93 };
94
95 static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame)
96 {
97     Libdav1dContext *dav1d = c->priv_data;
98     Dav1dData *data = &dav1d->data;
99     Dav1dPicture p = { 0 };
100     int res;
101
102     if (!data->sz) {
103         AVPacket pkt = { 0 };
104
105         res = ff_decode_get_packet(c, &pkt);
106         if (res < 0 && res != AVERROR_EOF)
107             return res;
108
109         if (pkt.size) {
110             res = dav1d_data_wrap(data, pkt.data, pkt.size, libdav1d_data_free, pkt.buf);
111             if (res < 0) {
112                 av_packet_unref(&pkt);
113                 return res;
114             }
115
116             data->m.timestamp = pkt.pts;
117             data->m.offset = pkt.pos;
118             data->m.duration = pkt.duration;
119
120             pkt.buf = NULL;
121             av_packet_unref(&pkt);
122         }
123     }
124
125     res = dav1d_send_data(dav1d->c, data);
126     if (res < 0) {
127         if (res == -EINVAL)
128             res = AVERROR_INVALIDDATA;
129         if (res != -EAGAIN)
130             return res;
131     }
132
133     res = dav1d_get_picture(dav1d->c, &p);
134     if (res < 0) {
135         if (res == -EINVAL)
136             res = AVERROR_INVALIDDATA;
137         else if (res == -EAGAIN && c->internal->draining)
138             res = AVERROR_EOF;
139
140         return res;
141     }
142
143     av_assert0(p.data[0] != NULL);
144
145     frame->buf[0] = av_buffer_create(NULL, 0, libdav1d_frame_free,
146                                      p.ref, AV_BUFFER_FLAG_READONLY);
147     if (!frame->buf[0]) {
148         dav1d_picture_unref(&p);
149         return AVERROR(ENOMEM);
150     }
151
152     frame->data[0] = p.data[0];
153     frame->data[1] = p.data[1];
154     frame->data[2] = p.data[2];
155     frame->linesize[0] = p.stride[0];
156     frame->linesize[1] = p.stride[1];
157     frame->linesize[2] = p.stride[1];
158
159     c->profile = profile[p.p.layout];
160     frame->format = c->pix_fmt = pix_fmt[p.p.layout][p.p.bpc == 10];
161     frame->width = p.p.w;
162     frame->height = p.p.h;
163     if (c->width != p.p.w || c->height != p.p.h) {
164         res = ff_set_dimensions(c, p.p.w, p.p.h);
165         if (res < 0)
166             return res;
167     }
168
169     switch (p.seq_hdr->chr) {
170     case DAV1D_CHR_VERTICAL:
171         frame->chroma_location = c->chroma_sample_location = AVCHROMA_LOC_LEFT;
172         break;
173     case DAV1D_CHR_COLOCATED:
174         frame->chroma_location = c->chroma_sample_location = AVCHROMA_LOC_TOPLEFT;
175         break;
176     }
177     frame->colorspace = c->colorspace = (enum AVColorSpace) p.seq_hdr->mtrx;
178     frame->color_primaries = c->color_primaries = (enum AVColorPrimaries) p.seq_hdr->pri;
179     frame->color_trc = c->color_trc = (enum AVColorTransferCharacteristic) p.seq_hdr->trc;
180     frame->color_range = c->color_range = p.seq_hdr->color_range ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
181
182     // match timestamps and packet size
183     frame->pts = frame->best_effort_timestamp = p.m.timestamp;
184 #if FF_API_PKT_PTS
185 FF_DISABLE_DEPRECATION_WARNINGS
186     frame->pkt_pts = p.m.timestamp;
187 FF_ENABLE_DEPRECATION_WARNINGS
188 #endif
189     frame->pkt_dts = p.m.timestamp;
190     frame->pkt_pos = p.m.offset;
191     frame->pkt_size = p.m.size;
192     frame->pkt_duration = p.m.duration;
193     frame->key_frame = p.frame_hdr->frame_type == DAV1D_FRAME_TYPE_KEY;
194
195     switch (p.frame_hdr->frame_type) {
196     case DAV1D_FRAME_TYPE_KEY:
197     case DAV1D_FRAME_TYPE_INTRA:
198         frame->pict_type = AV_PICTURE_TYPE_I;
199         break;
200     case DAV1D_FRAME_TYPE_INTER:
201         frame->pict_type = AV_PICTURE_TYPE_P;
202         break;
203     case DAV1D_FRAME_TYPE_SWITCH:
204         frame->pict_type = AV_PICTURE_TYPE_SP;
205         break;
206     default:
207         return AVERROR_INVALIDDATA;
208     }
209
210     return 0;
211 }
212
213 static av_cold int libdav1d_close(AVCodecContext *c)
214 {
215     Libdav1dContext *dav1d = c->priv_data;
216
217     dav1d_data_unref(&dav1d->data);
218     dav1d_close(&dav1d->c);
219
220     return 0;
221 }
222
223 #define OFFSET(x) offsetof(Libdav1dContext, x)
224 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
225 static const AVOption libdav1d_options[] = {
226     { "tilethreads", "Tile threads", OFFSET(tile_threads), AV_OPT_TYPE_INT, { .i64 = 1 }, 1, DAV1D_MAX_TILE_THREADS, VD },
227     { NULL }
228 };
229
230 static const AVClass libdav1d_class = {
231     .class_name = "libdav1d decoder",
232     .item_name  = av_default_item_name,
233     .option     = libdav1d_options,
234     .version    = LIBAVUTIL_VERSION_INT,
235 };
236
237 AVCodec ff_libdav1d_decoder = {
238     .name           = "libdav1d",
239     .long_name      = NULL_IF_CONFIG_SMALL("dav1d AV1 decoder by VideoLAN"),
240     .type           = AVMEDIA_TYPE_VIDEO,
241     .id             = AV_CODEC_ID_AV1,
242     .priv_data_size = sizeof(Libdav1dContext),
243     .init           = libdav1d_init,
244     .close          = libdav1d_close,
245     .flush          = libdav1d_flush,
246     .receive_frame  = libdav1d_receive_frame,
247     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
248     .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_SETS_PKT_DTS,
249     .priv_class     = &libdav1d_class,
250     .wrapper_name   = "libdav1d",
251 };