]> git.sesse.net Git - ffmpeg/blob - libavcodec/libdav1d.c
avcodec/libdav1d: add support for 12bit streams
[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     int apply_grain;
38 } Libdav1dContext;
39
40 static av_cold int libdav1d_init(AVCodecContext *c)
41 {
42     Libdav1dContext *dav1d = c->priv_data;
43     Dav1dSettings s;
44     int res;
45
46     av_log(c, AV_LOG_INFO, "libdav1d %s\n", dav1d_version());
47
48     dav1d_default_settings(&s);
49     s.n_tile_threads = dav1d->tile_threads;
50     s.apply_grain = dav1d->apply_grain;
51     s.n_frame_threads = FFMIN(c->thread_count ? c->thread_count : av_cpu_count(), DAV1D_MAX_FRAME_THREADS);
52
53     res = dav1d_open(&dav1d->c, &s);
54     if (res < 0)
55         return AVERROR(ENOMEM);
56
57     return 0;
58 }
59
60 static void libdav1d_flush(AVCodecContext *c)
61 {
62     Libdav1dContext *dav1d = c->priv_data;
63
64     dav1d_data_unref(&dav1d->data);
65     dav1d_flush(dav1d->c);
66 }
67
68 static void libdav1d_data_free(const uint8_t *data, void *opaque) {
69     AVBufferRef *buf = opaque;
70
71     av_buffer_unref(&buf);
72 }
73
74 static void libdav1d_frame_free(void *opaque, uint8_t *data) {
75     Dav1dPicture p = { 0 };
76
77     p.ref = opaque;
78     p.data[0] = (void *) 0x1; // this has to be non-NULL
79     dav1d_picture_unref(&p);
80 }
81
82 static const enum AVPixelFormat pix_fmt[][3] = {
83     [DAV1D_PIXEL_LAYOUT_I400] = { AV_PIX_FMT_GRAY8,   AV_PIX_FMT_GRAY10,    AV_PIX_FMT_GRAY12 },
84     [DAV1D_PIXEL_LAYOUT_I420] = { AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV420P12 },
85     [DAV1D_PIXEL_LAYOUT_I422] = { AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV422P12 },
86     [DAV1D_PIXEL_LAYOUT_I444] = { AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV444P10, AV_PIX_FMT_YUV444P12 },
87 };
88
89 static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame)
90 {
91     Libdav1dContext *dav1d = c->priv_data;
92     Dav1dData *data = &dav1d->data;
93     Dav1dPicture p = { 0 };
94     int res;
95
96     if (!data->sz) {
97         AVPacket pkt = { 0 };
98
99         res = ff_decode_get_packet(c, &pkt);
100         if (res < 0 && res != AVERROR_EOF)
101             return res;
102
103         if (pkt.size) {
104             res = dav1d_data_wrap(data, pkt.data, pkt.size, libdav1d_data_free, pkt.buf);
105             if (res < 0) {
106                 av_packet_unref(&pkt);
107                 return res;
108             }
109
110             data->m.timestamp = pkt.pts;
111             data->m.offset = pkt.pos;
112             data->m.duration = pkt.duration;
113
114             pkt.buf = NULL;
115             av_packet_unref(&pkt);
116         }
117     }
118
119     res = dav1d_send_data(dav1d->c, data);
120     if (res < 0) {
121         if (res == -EINVAL)
122             res = AVERROR_INVALIDDATA;
123         if (res != -EAGAIN)
124             return res;
125     }
126
127     res = dav1d_get_picture(dav1d->c, &p);
128     if (res < 0) {
129         if (res == -EINVAL)
130             res = AVERROR_INVALIDDATA;
131         else if (res == -EAGAIN && c->internal->draining)
132             res = AVERROR_EOF;
133
134         return res;
135     }
136
137     av_assert0(p.data[0] != NULL);
138
139     frame->buf[0] = av_buffer_create(NULL, 0, libdav1d_frame_free,
140                                      p.ref, AV_BUFFER_FLAG_READONLY);
141     if (!frame->buf[0]) {
142         dav1d_picture_unref(&p);
143         return AVERROR(ENOMEM);
144     }
145
146     frame->data[0] = p.data[0];
147     frame->data[1] = p.data[1];
148     frame->data[2] = p.data[2];
149     frame->linesize[0] = p.stride[0];
150     frame->linesize[1] = p.stride[1];
151     frame->linesize[2] = p.stride[1];
152
153     c->profile = p.seq_hdr->profile;
154     frame->format = c->pix_fmt = pix_fmt[p.p.layout][p.seq_hdr->hbd];
155     frame->width = p.p.w;
156     frame->height = p.p.h;
157     if (c->width != p.p.w || c->height != p.p.h) {
158         res = ff_set_dimensions(c, p.p.w, p.p.h);
159         if (res < 0)
160             return res;
161     }
162
163     switch (p.seq_hdr->chr) {
164     case DAV1D_CHR_VERTICAL:
165         frame->chroma_location = c->chroma_sample_location = AVCHROMA_LOC_LEFT;
166         break;
167     case DAV1D_CHR_COLOCATED:
168         frame->chroma_location = c->chroma_sample_location = AVCHROMA_LOC_TOPLEFT;
169         break;
170     }
171     frame->colorspace = c->colorspace = (enum AVColorSpace) p.seq_hdr->mtrx;
172     frame->color_primaries = c->color_primaries = (enum AVColorPrimaries) p.seq_hdr->pri;
173     frame->color_trc = c->color_trc = (enum AVColorTransferCharacteristic) p.seq_hdr->trc;
174     frame->color_range = c->color_range = p.seq_hdr->color_range ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
175
176     // match timestamps and packet size
177     frame->pts = frame->best_effort_timestamp = p.m.timestamp;
178 #if FF_API_PKT_PTS
179 FF_DISABLE_DEPRECATION_WARNINGS
180     frame->pkt_pts = p.m.timestamp;
181 FF_ENABLE_DEPRECATION_WARNINGS
182 #endif
183     frame->pkt_dts = p.m.timestamp;
184     frame->pkt_pos = p.m.offset;
185     frame->pkt_size = p.m.size;
186     frame->pkt_duration = p.m.duration;
187     frame->key_frame = p.frame_hdr->frame_type == DAV1D_FRAME_TYPE_KEY;
188
189     switch (p.frame_hdr->frame_type) {
190     case DAV1D_FRAME_TYPE_KEY:
191     case DAV1D_FRAME_TYPE_INTRA:
192         frame->pict_type = AV_PICTURE_TYPE_I;
193         break;
194     case DAV1D_FRAME_TYPE_INTER:
195         frame->pict_type = AV_PICTURE_TYPE_P;
196         break;
197     case DAV1D_FRAME_TYPE_SWITCH:
198         frame->pict_type = AV_PICTURE_TYPE_SP;
199         break;
200     default:
201         return AVERROR_INVALIDDATA;
202     }
203
204     return 0;
205 }
206
207 static av_cold int libdav1d_close(AVCodecContext *c)
208 {
209     Libdav1dContext *dav1d = c->priv_data;
210
211     dav1d_data_unref(&dav1d->data);
212     dav1d_close(&dav1d->c);
213
214     return 0;
215 }
216
217 #define OFFSET(x) offsetof(Libdav1dContext, x)
218 #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
219 static const AVOption libdav1d_options[] = {
220     { "tilethreads", "Tile threads", OFFSET(tile_threads), AV_OPT_TYPE_INT, { .i64 = 1 }, 1, DAV1D_MAX_TILE_THREADS, VD },
221     { "filmgrain", "Apply Film Grain", OFFSET(apply_grain), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, VD },
222     { NULL }
223 };
224
225 static const AVClass libdav1d_class = {
226     .class_name = "libdav1d decoder",
227     .item_name  = av_default_item_name,
228     .option     = libdav1d_options,
229     .version    = LIBAVUTIL_VERSION_INT,
230 };
231
232 AVCodec ff_libdav1d_decoder = {
233     .name           = "libdav1d",
234     .long_name      = NULL_IF_CONFIG_SMALL("dav1d AV1 decoder by VideoLAN"),
235     .type           = AVMEDIA_TYPE_VIDEO,
236     .id             = AV_CODEC_ID_AV1,
237     .priv_data_size = sizeof(Libdav1dContext),
238     .init           = libdav1d_init,
239     .close          = libdav1d_close,
240     .flush          = libdav1d_flush,
241     .receive_frame  = libdav1d_receive_frame,
242     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
243     .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_SETS_PKT_DTS,
244     .priv_class     = &libdav1d_class,
245     .wrapper_name   = "libdav1d",
246 };