You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

321 lines
9.7KB

  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. #include <dav1d/dav1d.h>
  22. #include "libavutil/avassert.h"
  23. #include "libavutil/imgutils.h"
  24. #include "libavutil/opt.h"
  25. #include "avcodec.h"
  26. #include "decode.h"
  27. #include "internal.h"
  28. typedef struct Libdav1dContext {
  29. AVClass *class;
  30. Dav1dContext *c;
  31. AVBufferPool *pool;
  32. int pool_size;
  33. Dav1dData data;
  34. int tile_threads;
  35. int apply_grain;
  36. } Libdav1dContext;
  37. static const enum AVPixelFormat pix_fmt[][3] = {
  38. [DAV1D_PIXEL_LAYOUT_I400] = { AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY10, AV_PIX_FMT_GRAY12 },
  39. [DAV1D_PIXEL_LAYOUT_I420] = { AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV420P10, AV_PIX_FMT_YUV420P12 },
  40. [DAV1D_PIXEL_LAYOUT_I422] = { AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV422P12 },
  41. [DAV1D_PIXEL_LAYOUT_I444] = { AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV444P10, AV_PIX_FMT_YUV444P12 },
  42. };
  43. static void libdav1d_log_callback(void *opaque, const char *fmt, va_list vl)
  44. {
  45. AVCodecContext *c = opaque;
  46. av_vlog(c, AV_LOG_ERROR, fmt, vl);
  47. }
  48. static int libdav1d_picture_allocator(Dav1dPicture *p, void *cookie)
  49. {
  50. Libdav1dContext *dav1d = cookie;
  51. enum AVPixelFormat format = pix_fmt[p->p.layout][p->seq_hdr->hbd];
  52. int ret, linesize[4], h = FFALIGN(p->p.h, 128);
  53. uint8_t *aligned_ptr, *data[4];
  54. AVBufferRef *buf;
  55. ret = av_image_fill_arrays(data, linesize, NULL, format, FFALIGN(p->p.w, 128),
  56. h, DAV1D_PICTURE_ALIGNMENT);
  57. if (ret < 0)
  58. return ret;
  59. if (ret != dav1d->pool_size) {
  60. av_buffer_pool_uninit(&dav1d->pool);
  61. // Use twice the amount of required padding bytes for aligned_ptr below.
  62. dav1d->pool = av_buffer_pool_init(ret + DAV1D_PICTURE_ALIGNMENT * 2, NULL);
  63. if (!dav1d->pool)
  64. return AVERROR(ENOMEM);
  65. dav1d->pool_size = ret;
  66. }
  67. buf = av_buffer_pool_get(dav1d->pool);
  68. if (!buf)
  69. return AVERROR(ENOMEM);
  70. // libdav1d requires DAV1D_PICTURE_ALIGNMENT aligned buffers, which av_malloc()
  71. // doesn't guarantee for example when AVX is disabled at configure time.
  72. // Use the extra DAV1D_PICTURE_ALIGNMENT padding bytes in the buffer to align it
  73. // if required.
  74. aligned_ptr = (uint8_t *)FFALIGN((uintptr_t)buf->data, DAV1D_PICTURE_ALIGNMENT);
  75. ret = av_image_fill_pointers(data, format, h, aligned_ptr, linesize);
  76. if (ret < 0) {
  77. av_buffer_unref(&buf);
  78. return ret;
  79. }
  80. p->data[0] = data[0];
  81. p->data[1] = data[1];
  82. p->data[2] = data[2];
  83. p->stride[0] = linesize[0];
  84. p->stride[1] = linesize[1];
  85. p->allocator_data = buf;
  86. return 0;
  87. }
  88. static void libdav1d_picture_release(Dav1dPicture *p, void *cookie)
  89. {
  90. AVBufferRef *buf = p->allocator_data;
  91. av_buffer_unref(&buf);
  92. }
  93. static av_cold int libdav1d_init(AVCodecContext *c)
  94. {
  95. Libdav1dContext *dav1d = c->priv_data;
  96. Dav1dSettings s;
  97. int res;
  98. av_log(c, AV_LOG_INFO, "libdav1d %s\n", dav1d_version());
  99. dav1d_default_settings(&s);
  100. s.logger.cookie = c;
  101. s.logger.callback = libdav1d_log_callback;
  102. s.allocator.cookie = dav1d;
  103. s.allocator.alloc_picture_callback = libdav1d_picture_allocator;
  104. s.allocator.release_picture_callback = libdav1d_picture_release;
  105. s.n_tile_threads = dav1d->tile_threads;
  106. s.apply_grain = dav1d->apply_grain;
  107. s.n_frame_threads = FFMIN(c->thread_count ? c->thread_count : av_cpu_count(), DAV1D_MAX_FRAME_THREADS);
  108. res = dav1d_open(&dav1d->c, &s);
  109. if (res < 0)
  110. return AVERROR(ENOMEM);
  111. return 0;
  112. }
  113. static void libdav1d_flush(AVCodecContext *c)
  114. {
  115. Libdav1dContext *dav1d = c->priv_data;
  116. dav1d_data_unref(&dav1d->data);
  117. dav1d_flush(dav1d->c);
  118. }
  119. static void libdav1d_data_free(const uint8_t *data, void *opaque) {
  120. AVBufferRef *buf = opaque;
  121. av_buffer_unref(&buf);
  122. }
  123. static void libdav1d_frame_free(void *opaque, uint8_t *data) {
  124. Dav1dPicture *p = opaque;
  125. dav1d_picture_unref(p);
  126. av_free(p);
  127. }
  128. static int libdav1d_receive_frame(AVCodecContext *c, AVFrame *frame)
  129. {
  130. Libdav1dContext *dav1d = c->priv_data;
  131. Dav1dData *data = &dav1d->data;
  132. Dav1dPicture *p;
  133. int res;
  134. if (!data->sz) {
  135. AVPacket pkt = { 0 };
  136. res = ff_decode_get_packet(c, &pkt);
  137. if (res < 0 && res != AVERROR_EOF)
  138. return res;
  139. if (pkt.size) {
  140. res = dav1d_data_wrap(data, pkt.data, pkt.size, libdav1d_data_free, pkt.buf);
  141. if (res < 0) {
  142. av_packet_unref(&pkt);
  143. return res;
  144. }
  145. data->m.timestamp = pkt.pts;
  146. data->m.offset = pkt.pos;
  147. data->m.duration = pkt.duration;
  148. pkt.buf = NULL;
  149. av_packet_unref(&pkt);
  150. }
  151. }
  152. res = dav1d_send_data(dav1d->c, data);
  153. if (res < 0) {
  154. if (res == AVERROR(EINVAL))
  155. res = AVERROR_INVALIDDATA;
  156. if (res != AVERROR(EAGAIN))
  157. return res;
  158. }
  159. p = av_mallocz(sizeof(*p));
  160. if (!p)
  161. return AVERROR(ENOMEM);
  162. res = dav1d_get_picture(dav1d->c, p);
  163. if (res < 0) {
  164. if (res == AVERROR(EINVAL))
  165. res = AVERROR_INVALIDDATA;
  166. else if (res == AVERROR(EAGAIN) && c->internal->draining)
  167. res = AVERROR_EOF;
  168. av_free(p);
  169. return res;
  170. }
  171. av_assert0(p->data[0] != NULL);
  172. frame->buf[0] = av_buffer_create(NULL, 0, libdav1d_frame_free,
  173. p, AV_BUFFER_FLAG_READONLY);
  174. if (!frame->buf[0]) {
  175. dav1d_picture_unref(p);
  176. av_free(p);
  177. return AVERROR(ENOMEM);
  178. }
  179. frame->data[0] = p->data[0];
  180. frame->data[1] = p->data[1];
  181. frame->data[2] = p->data[2];
  182. frame->linesize[0] = p->stride[0];
  183. frame->linesize[1] = p->stride[1];
  184. frame->linesize[2] = p->stride[1];
  185. c->profile = p->seq_hdr->profile;
  186. frame->format = c->pix_fmt = pix_fmt[p->p.layout][p->seq_hdr->hbd];
  187. frame->width = p->p.w;
  188. frame->height = p->p.h;
  189. if (c->width != p->p.w || c->height != p->p.h) {
  190. res = ff_set_dimensions(c, p->p.w, p->p.h);
  191. if (res < 0)
  192. return res;
  193. }
  194. switch (p->seq_hdr->chr) {
  195. case DAV1D_CHR_VERTICAL:
  196. frame->chroma_location = c->chroma_sample_location = AVCHROMA_LOC_LEFT;
  197. break;
  198. case DAV1D_CHR_COLOCATED:
  199. frame->chroma_location = c->chroma_sample_location = AVCHROMA_LOC_TOPLEFT;
  200. break;
  201. }
  202. frame->colorspace = c->colorspace = (enum AVColorSpace) p->seq_hdr->mtrx;
  203. frame->color_primaries = c->color_primaries = (enum AVColorPrimaries) p->seq_hdr->pri;
  204. frame->color_trc = c->color_trc = (enum AVColorTransferCharacteristic) p->seq_hdr->trc;
  205. frame->color_range = c->color_range = p->seq_hdr->color_range ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG;
  206. // match timestamps and packet size
  207. frame->pts = frame->best_effort_timestamp = p->m.timestamp;
  208. #if FF_API_PKT_PTS
  209. FF_DISABLE_DEPRECATION_WARNINGS
  210. frame->pkt_pts = p->m.timestamp;
  211. FF_ENABLE_DEPRECATION_WARNINGS
  212. #endif
  213. frame->pkt_dts = p->m.timestamp;
  214. frame->pkt_pos = p->m.offset;
  215. frame->pkt_size = p->m.size;
  216. frame->pkt_duration = p->m.duration;
  217. frame->key_frame = p->frame_hdr->frame_type == DAV1D_FRAME_TYPE_KEY;
  218. switch (p->frame_hdr->frame_type) {
  219. case DAV1D_FRAME_TYPE_KEY:
  220. case DAV1D_FRAME_TYPE_INTRA:
  221. frame->pict_type = AV_PICTURE_TYPE_I;
  222. break;
  223. case DAV1D_FRAME_TYPE_INTER:
  224. frame->pict_type = AV_PICTURE_TYPE_P;
  225. break;
  226. case DAV1D_FRAME_TYPE_SWITCH:
  227. frame->pict_type = AV_PICTURE_TYPE_SP;
  228. break;
  229. default:
  230. return AVERROR_INVALIDDATA;
  231. }
  232. return 0;
  233. }
  234. static av_cold int libdav1d_close(AVCodecContext *c)
  235. {
  236. Libdav1dContext *dav1d = c->priv_data;
  237. av_buffer_pool_uninit(&dav1d->pool);
  238. dav1d_data_unref(&dav1d->data);
  239. dav1d_close(&dav1d->c);
  240. return 0;
  241. }
  242. #define OFFSET(x) offsetof(Libdav1dContext, x)
  243. #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM
  244. static const AVOption libdav1d_options[] = {
  245. { "tilethreads", "Tile threads", OFFSET(tile_threads), AV_OPT_TYPE_INT, { .i64 = 1 }, 1, DAV1D_MAX_TILE_THREADS, VD },
  246. { "filmgrain", "Apply Film Grain", OFFSET(apply_grain), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, VD },
  247. { NULL }
  248. };
  249. static const AVClass libdav1d_class = {
  250. .class_name = "libdav1d decoder",
  251. .item_name = av_default_item_name,
  252. .option = libdav1d_options,
  253. .version = LIBAVUTIL_VERSION_INT,
  254. };
  255. AVCodec ff_libdav1d_decoder = {
  256. .name = "libdav1d",
  257. .long_name = NULL_IF_CONFIG_SMALL("dav1d AV1 decoder by VideoLAN"),
  258. .type = AVMEDIA_TYPE_VIDEO,
  259. .id = AV_CODEC_ID_AV1,
  260. .priv_data_size = sizeof(Libdav1dContext),
  261. .init = libdav1d_init,
  262. .close = libdav1d_close,
  263. .flush = libdav1d_flush,
  264. .receive_frame = libdav1d_receive_frame,
  265. .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
  266. .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_SETS_PKT_DTS,
  267. .priv_class = &libdav1d_class,
  268. .wrapper_name = "libdav1d",
  269. };