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.

249 lines
7.4KB

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