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.

209 lines
6.7KB

  1. /*
  2. * AVS2 decoding using the davs2 library
  3. *
  4. * Copyright (C) 2018 Yiqun Xu, <yiqun.xu@vipl.ict.ac.cn>
  5. * Falei Luo, <falei.luo@gmail.com>
  6. * Huiwen Ren, <hwrenx@gmail.com>
  7. *
  8. * This file is part of FFmpeg.
  9. *
  10. * FFmpeg is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2.1 of the License, or (at your option) any later version.
  14. *
  15. * FFmpeg is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with FFmpeg; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. */
  24. #include "avcodec.h"
  25. #include "davs2.h"
  26. typedef struct DAVS2Context {
  27. void *decoder;
  28. AVFrame *frame;
  29. davs2_param_t param; // decoding parameters
  30. davs2_packet_t packet; // input bitstream
  31. davs2_picture_t out_frame; // output data, frame data
  32. davs2_seq_info_t headerset; // output data, sequence header
  33. }DAVS2Context;
  34. static av_cold int davs2_init(AVCodecContext *avctx)
  35. {
  36. DAVS2Context *cad = avctx->priv_data;
  37. int cpu_flags = av_get_cpu_flags();
  38. /* init the decoder */
  39. cad->param.threads = avctx->thread_count;
  40. cad->param.info_level = 0;
  41. cad->decoder = davs2_decoder_open(&cad->param);
  42. cad->param.disable_avx = !(cpu_flags & AV_CPU_FLAG_AVX &&
  43. cpu_flags & AV_CPU_FLAG_AVX2);
  44. if (!cad->decoder) {
  45. av_log(avctx, AV_LOG_ERROR, "decoder created error.");
  46. return AVERROR_EXTERNAL;
  47. }
  48. av_log(avctx, AV_LOG_VERBOSE, "decoder created. %p\n", cad->decoder);
  49. return 0;
  50. }
  51. static int davs2_dump_frames(AVCodecContext *avctx, davs2_picture_t *pic,
  52. davs2_seq_info_t *headerset, int ret_type, AVFrame *frame)
  53. {
  54. DAVS2Context *cad = avctx->priv_data;
  55. int bytes_per_sample = pic->bytes_per_sample;
  56. int plane = 0;
  57. int line = 0;
  58. if (!headerset)
  59. return 0;
  60. if (!pic || ret_type == DAVS2_GOT_HEADER) {
  61. avctx->width = headerset->width;
  62. avctx->height = headerset->height;
  63. avctx->pix_fmt = headerset->output_bit_depth == 10 ?
  64. AV_PIX_FMT_YUV420P10 : AV_PIX_FMT_YUV420P;
  65. avctx->framerate = av_d2q(headerset->frame_rate,4096);
  66. return 0;
  67. }
  68. switch (pic->type) {
  69. case DAVS2_PIC_I:
  70. case DAVS2_PIC_G:
  71. frame->pict_type = AV_PICTURE_TYPE_I;
  72. break;
  73. case DAVS2_PIC_P:
  74. case DAVS2_PIC_S:
  75. frame->pict_type = AV_PICTURE_TYPE_P;
  76. break;
  77. case DAVS2_PIC_B:
  78. frame->pict_type = AV_PICTURE_TYPE_B;
  79. break;
  80. case DAVS2_PIC_F:
  81. frame->pict_type = AV_PICTURE_TYPE_S;
  82. break;
  83. default:
  84. av_log(avctx, AV_LOG_ERROR, "Decoder error: unknown frame type\n");
  85. return AVERROR_EXTERNAL;
  86. }
  87. for (plane = 0; plane < 3; ++plane) {
  88. int size_line = pic->widths[plane] * bytes_per_sample;
  89. frame->buf[plane] = av_buffer_alloc(size_line * pic->lines[plane]);
  90. if (!frame->buf[plane]){
  91. av_log(avctx, AV_LOG_ERROR, "dump error: alloc failed.\n");
  92. return AVERROR(ENOMEM);
  93. }
  94. frame->data[plane] = frame->buf[plane]->data;
  95. frame->linesize[plane] = size_line;
  96. for (line = 0; line < pic->lines[plane]; ++line)
  97. memcpy(frame->data[plane] + line * size_line,
  98. pic->planes[plane] + line * pic->strides[plane],
  99. pic->widths[plane] * bytes_per_sample);
  100. }
  101. frame->width = cad->headerset.width;
  102. frame->height = cad->headerset.height;
  103. frame->pts = cad->out_frame.pts;
  104. frame->format = avctx->pix_fmt;
  105. return 1;
  106. }
  107. static int send_delayed_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame)
  108. {
  109. DAVS2Context *cad = avctx->priv_data;
  110. int ret = DAVS2_DEFAULT;
  111. ret = davs2_decoder_flush(cad->decoder, &cad->headerset, &cad->out_frame);
  112. if (ret == DAVS2_ERROR) {
  113. av_log(avctx, AV_LOG_ERROR, "Decoder error: can't flush delayed frame\n");
  114. return AVERROR_EXTERNAL;
  115. }
  116. if (ret == DAVS2_GOT_FRAME) {
  117. *got_frame = davs2_dump_frames(avctx, &cad->out_frame, &cad->headerset, ret, frame);
  118. davs2_decoder_frame_unref(cad->decoder, &cad->out_frame);
  119. }
  120. return ret;
  121. }
  122. static av_cold int davs2_end(AVCodecContext *avctx)
  123. {
  124. DAVS2Context *cad = avctx->priv_data;
  125. /* close the decoder */
  126. if (cad->decoder) {
  127. davs2_decoder_close(cad->decoder);
  128. cad->decoder = NULL;
  129. }
  130. return 0;
  131. }
  132. static int davs2_decode_frame(AVCodecContext *avctx, void *data,
  133. int *got_frame, AVPacket *avpkt)
  134. {
  135. DAVS2Context *cad = avctx->priv_data;
  136. int buf_size = avpkt->size;
  137. uint8_t *buf_ptr = avpkt->data;
  138. AVFrame *frame = data;
  139. int ret = DAVS2_DEFAULT;
  140. /* end of stream, output what is still in the buffers */
  141. if (!buf_size) {
  142. return send_delayed_frame(avctx, frame, got_frame);
  143. }
  144. cad->packet.data = buf_ptr;
  145. cad->packet.len = buf_size;
  146. cad->packet.pts = avpkt->pts;
  147. cad->packet.dts = avpkt->dts;
  148. ret = davs2_decoder_send_packet(cad->decoder, &cad->packet);
  149. if (ret == DAVS2_ERROR) {
  150. av_log(avctx, AV_LOG_ERROR, "Decoder error: can't read packet\n");
  151. return AVERROR_EXTERNAL;
  152. }
  153. ret = davs2_decoder_recv_frame(cad->decoder, &cad->headerset, &cad->out_frame);
  154. if (ret != DAVS2_DEFAULT) {
  155. *got_frame = davs2_dump_frames(avctx, &cad->out_frame, &cad->headerset, ret, frame);
  156. davs2_decoder_frame_unref(cad->decoder, &cad->out_frame);
  157. }
  158. return buf_size;
  159. }
  160. AVCodec ff_libdavs2_decoder = {
  161. .name = "libdavs2",
  162. .long_name = NULL_IF_CONFIG_SMALL("libdavs2 AVS2-P2/IEEE1857.4"),
  163. .type = AVMEDIA_TYPE_VIDEO,
  164. .id = AV_CODEC_ID_AVS2,
  165. .priv_data_size = sizeof(DAVS2Context),
  166. .init = davs2_init,
  167. .close = davs2_end,
  168. .decode = davs2_decode_frame,
  169. .capabilities = AV_CODEC_CAP_DELAY,//AV_CODEC_CAP_DR1 |
  170. .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P,
  171. AV_PIX_FMT_NONE },
  172. .wrapper_name = "libdavs2",
  173. };