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.

264 lines
9.0KB

  1. /*
  2. * RAW AVS3-P2/IEEE1857.10 video demuxer
  3. * Copyright (c) 2020 Zhenyu Wang <wangzhenyu@pkusz.edu.cn>
  4. * Bingjie Han <hanbj@pkusz.edu.cn>
  5. * Huiwen Ren <hwrenx@gmail.com>
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #include "libavutil/avassert.h"
  24. #include "libavutil/avutil.h"
  25. #include "libavutil/common.h"
  26. #include "libavutil/imgutils.h"
  27. #include "libavutil/intreadwrite.h"
  28. #include "libavutil/opt.h"
  29. #include "avcodec.h"
  30. #include "avs3.h"
  31. #include "internal.h"
  32. #include "uavs3d.h"
  33. typedef struct uavs3d_context {
  34. AVCodecContext *avctx;
  35. void *dec_handle;
  36. int frame_threads;
  37. int got_seqhdr;
  38. uavs3d_io_frm_t dec_frame;
  39. } uavs3d_context;
  40. #define UAVS3D_CHECK_START_CODE(data_ptr, PIC_START_CODE) \
  41. (AV_RL32(data_ptr) != (PIC_START_CODE << 24) + AVS3_NAL_START_CODE)
  42. static int uavs3d_find_next_start_code(const unsigned char *bs_data, int bs_len, int *left)
  43. {
  44. const unsigned char *data_ptr = bs_data + 4;
  45. int count = bs_len - 4;
  46. while (count >= 4 &&
  47. UAVS3D_CHECK_START_CODE(data_ptr, AVS3_INTER_PIC_START_CODE) &&
  48. UAVS3D_CHECK_START_CODE(data_ptr, AVS3_INTRA_PIC_START_CODE) &&
  49. UAVS3D_CHECK_START_CODE(data_ptr, AVS3_SEQ_START_CODE) &&
  50. UAVS3D_CHECK_START_CODE(data_ptr, AVS3_FIRST_SLICE_START_CODE) &&
  51. UAVS3D_CHECK_START_CODE(data_ptr, AVS3_SEQ_END_CODE)) {
  52. data_ptr++;
  53. count--;
  54. }
  55. if (count >= 4) {
  56. *left = count;
  57. return 1;
  58. }
  59. return 0;
  60. }
  61. static void uavs3d_output_callback(uavs3d_io_frm_t *dec_frame) {
  62. uavs3d_io_frm_t frm_out;
  63. AVFrame *frm = (AVFrame *)dec_frame->priv;
  64. int i;
  65. if (!frm || !frm->data[0]) {
  66. dec_frame->got_pic = 0;
  67. av_log(NULL, AV_LOG_ERROR, "Invalid AVFrame in uavs3d output.\n");
  68. return;
  69. }
  70. frm->pts = dec_frame->pts;
  71. frm->pkt_dts = dec_frame->dts;
  72. frm->pkt_pos = dec_frame->pkt_pos;
  73. frm->pkt_size = dec_frame->pkt_size;
  74. frm->coded_picture_number = dec_frame->dtr;
  75. frm->display_picture_number = dec_frame->ptr;
  76. if (dec_frame->type < 0 || dec_frame->type >= 4) {
  77. av_log(NULL, AV_LOG_WARNING, "Error frame type in uavs3d: %d.\n", dec_frame->type);
  78. }
  79. frm->pict_type = ff_avs3_image_type[dec_frame->type];
  80. frm->key_frame = (frm->pict_type == AV_PICTURE_TYPE_I);
  81. for (i = 0; i < 3; i++) {
  82. frm_out.width [i] = dec_frame->width[i];
  83. frm_out.height[i] = dec_frame->height[i];
  84. frm_out.stride[i] = frm->linesize[i];
  85. frm_out.buffer[i] = frm->data[i];
  86. }
  87. uavs3d_img_cpy_cvt(&frm_out, dec_frame, dec_frame->bit_depth);
  88. }
  89. static av_cold int libuavs3d_init(AVCodecContext *avctx)
  90. {
  91. uavs3d_context *h = avctx->priv_data;
  92. uavs3d_cfg_t cdsc;
  93. cdsc.frm_threads = avctx->thread_count > 0 ? avctx->thread_count : av_cpu_count();
  94. cdsc.check_md5 = 0;
  95. h->dec_handle = uavs3d_create(&cdsc, uavs3d_output_callback, NULL);
  96. h->got_seqhdr = 0;
  97. if (!h->dec_handle) {
  98. return AVERROR(ENOMEM);
  99. }
  100. return 0;
  101. }
  102. static av_cold int libuavs3d_end(AVCodecContext *avctx)
  103. {
  104. uavs3d_context *h = avctx->priv_data;
  105. if (h->dec_handle) {
  106. uavs3d_flush(h->dec_handle, NULL);
  107. uavs3d_delete(h->dec_handle);
  108. h->dec_handle = NULL;
  109. }
  110. h->got_seqhdr = 0;
  111. return 0;
  112. }
  113. static void libuavs3d_flush(AVCodecContext * avctx)
  114. {
  115. uavs3d_context *h = avctx->priv_data;
  116. if (h->dec_handle) {
  117. uavs3d_reset(h->dec_handle);
  118. }
  119. }
  120. #define UAVS3D_CHECK_INVALID_RANGE(v, l, r) ((v)<(l)||(v)>(r))
  121. static int libuavs3d_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
  122. {
  123. uavs3d_context *h = avctx->priv_data;
  124. const uint8_t *buf = avpkt->data;
  125. int buf_size = avpkt->size;
  126. const uint8_t *buf_end;
  127. const uint8_t *buf_ptr;
  128. AVFrame *frm = data;
  129. int left_bytes;
  130. int ret, finish = 0;
  131. *got_frame = 0;
  132. frm->pts = -1;
  133. frm->pict_type = AV_PICTURE_TYPE_NONE;
  134. if (!buf_size) {
  135. if (h->got_seqhdr) {
  136. if (!frm->data[0] && (ret = ff_get_buffer(avctx, frm, 0)) < 0) {
  137. return ret;
  138. }
  139. h->dec_frame.priv = data; // AVFrame
  140. }
  141. do {
  142. ret = uavs3d_flush(h->dec_handle, &h->dec_frame);
  143. } while (ret > 0 && !h->dec_frame.got_pic);
  144. } else {
  145. uavs3d_io_frm_t *frm_dec = &h->dec_frame;
  146. buf_ptr = buf;
  147. buf_end = buf + buf_size;
  148. frm_dec->pkt_pos = avpkt->pos;
  149. frm_dec->pkt_size = avpkt->size;
  150. while (!finish) {
  151. int bs_len;
  152. if (h->got_seqhdr) {
  153. if (!frm->data[0] && (ret = ff_get_buffer(avctx, frm, 0)) < 0) {
  154. return ret;
  155. }
  156. h->dec_frame.priv = data; // AVFrame
  157. }
  158. if (uavs3d_find_next_start_code(buf_ptr, buf_end - buf_ptr, &left_bytes)) {
  159. bs_len = buf_end - buf_ptr - left_bytes;
  160. } else {
  161. bs_len = buf_end - buf_ptr;
  162. finish = 1;
  163. }
  164. frm_dec->bs = (unsigned char *)buf_ptr;
  165. frm_dec->bs_len = bs_len;
  166. frm_dec->pts = avpkt->pts;
  167. frm_dec->dts = avpkt->dts;
  168. uavs3d_decode(h->dec_handle, frm_dec);
  169. buf_ptr += bs_len;
  170. if (frm_dec->nal_type == NAL_SEQ_HEADER) {
  171. struct uavs3d_com_seqh_t *seqh = frm_dec->seqhdr;
  172. if (UAVS3D_CHECK_INVALID_RANGE(seqh->frame_rate_code, 0, 15)) {
  173. av_log(avctx, AV_LOG_ERROR, "Invalid frame rate code: %d.\n", seqh->frame_rate_code);
  174. seqh->frame_rate_code = 3; // default 25 fps
  175. } else {
  176. avctx->framerate.num = ff_avs3_frame_rate_tab[seqh->frame_rate_code].num;
  177. avctx->framerate.den = ff_avs3_frame_rate_tab[seqh->frame_rate_code].den;
  178. }
  179. avctx->has_b_frames = !seqh->low_delay;
  180. avctx->pix_fmt = seqh->bit_depth_internal == 8 ? AV_PIX_FMT_YUV420P : AV_PIX_FMT_YUV420P10LE;
  181. ff_set_dimensions(avctx, seqh->horizontal_size, seqh->vertical_size);
  182. h->got_seqhdr = 1;
  183. if (seqh->colour_description) {
  184. if (UAVS3D_CHECK_INVALID_RANGE(seqh->colour_primaries, 0, 9) ||
  185. UAVS3D_CHECK_INVALID_RANGE(seqh->transfer_characteristics, 0, 14) ||
  186. UAVS3D_CHECK_INVALID_RANGE(seqh->matrix_coefficients, 0, 11)) {
  187. av_log(avctx, AV_LOG_ERROR,
  188. "Invalid colour description: primaries: %d"
  189. "transfer characteristics: %d"
  190. "matrix coefficients: %d.\n",
  191. seqh->colour_primaries,
  192. seqh->transfer_characteristics,
  193. seqh->matrix_coefficients);
  194. } else {
  195. avctx->color_primaries = ff_avs3_color_primaries_tab[seqh->colour_primaries];
  196. avctx->color_trc = ff_avs3_color_transfer_tab [seqh->transfer_characteristics];
  197. avctx->colorspace = ff_avs3_color_matrix_tab [seqh->matrix_coefficients];
  198. }
  199. }
  200. }
  201. if (frm_dec->got_pic) {
  202. break;
  203. }
  204. }
  205. }
  206. *got_frame = h->dec_frame.got_pic;
  207. if (!(*got_frame)) {
  208. av_frame_unref(frm);
  209. }
  210. return buf_ptr - buf;
  211. }
  212. AVCodec ff_libuavs3d_decoder = {
  213. .name = "libuavs3d",
  214. .long_name = NULL_IF_CONFIG_SMALL("libuavs3d AVS3-P2/IEEE1857.10"),
  215. .type = AVMEDIA_TYPE_VIDEO,
  216. .id = AV_CODEC_ID_AVS3,
  217. .priv_data_size = sizeof(uavs3d_context),
  218. .init = libuavs3d_init,
  219. .close = libuavs3d_end,
  220. .decode = libuavs3d_decode_frame,
  221. .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY | AV_CODEC_CAP_OTHER_THREADS,
  222. .caps_internal = FF_CODEC_CAP_AUTO_THREADS,
  223. .flush = libuavs3d_flush,
  224. .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P,
  225. AV_PIX_FMT_YUV420P10LE,
  226. AV_PIX_FMT_NONE },
  227. .wrapper_name = "libuavs3d",
  228. };