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.

352 lines
12KB

  1. /*
  2. * AVS encoding using the xavs library
  3. * Copyright (C) 2010 Amanda, Y.N. Wu <amanda11192003@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 <stdio.h>
  22. #include <stdlib.h>
  23. #include <string.h>
  24. #include <math.h>
  25. #include <stdint.h>
  26. #include <xavs.h>
  27. #include "avcodec.h"
  28. #define END_OF_STREAM 0x001
  29. #define XAVS_PART_I8X8 0x002 /* Analyze i8x8 (requires 8x8 transform) */
  30. #define XAVS_PART_P8X8 0x010 /* Analyze p16x8, p8x16 and p8x8 */
  31. #define XAVS_PART_B8X8 0x100 /* Analyze b16x8, b*/
  32. typedef struct XavsContext {
  33. xavs_param_t params;
  34. xavs_t *enc;
  35. xavs_picture_t pic;
  36. uint8_t *sei;
  37. int sei_size;
  38. AVFrame out_pic;
  39. int end_of_stream;
  40. } XavsContext;
  41. static void XAVS_log(void *p, int level, const char *fmt, va_list args)
  42. {
  43. static const int level_map[] = {
  44. [XAVS_LOG_ERROR] = AV_LOG_ERROR,
  45. [XAVS_LOG_WARNING] = AV_LOG_WARNING,
  46. [XAVS_LOG_INFO] = AV_LOG_INFO,
  47. [XAVS_LOG_DEBUG] = AV_LOG_DEBUG
  48. };
  49. if (level < 0 || level > XAVS_LOG_DEBUG)
  50. return;
  51. av_vlog(p, level_map[level], fmt, args);
  52. }
  53. static int encode_nals(AVCodecContext *ctx, uint8_t *buf,
  54. int size, xavs_nal_t *nals,
  55. int nnal, int skip_sei)
  56. {
  57. XavsContext *x4 = ctx->priv_data;
  58. uint8_t *p = buf;
  59. int i, s;
  60. /* Write the SEI as part of the first frame. */
  61. if (x4->sei_size > 0 && nnal > 0) {
  62. memcpy(p, x4->sei, x4->sei_size);
  63. p += x4->sei_size;
  64. x4->sei_size = 0;
  65. }
  66. for (i = 0; i < nnal; i++) {
  67. /* Don't put the SEI in extradata. */
  68. if (skip_sei && nals[i].i_type == NAL_SEI) {
  69. x4->sei = av_malloc( 5 + nals[i].i_payload * 4 / 3 );
  70. if (xavs_nal_encode(x4->sei, &x4->sei_size, 1, nals + i) < 0)
  71. return -1;
  72. continue;
  73. }
  74. s = xavs_nal_encode(p, &size, 1, nals + i);
  75. if (s < 0)
  76. return -1;
  77. p += s;
  78. }
  79. return p - buf;
  80. }
  81. static int XAVS_frame(AVCodecContext *ctx, uint8_t *buf,
  82. int bufsize, void *data)
  83. {
  84. XavsContext *x4 = ctx->priv_data;
  85. AVFrame *frame = data;
  86. xavs_nal_t *nal;
  87. int nnal, i;
  88. xavs_picture_t pic_out;
  89. x4->pic.img.i_csp = XAVS_CSP_I420;
  90. x4->pic.img.i_plane = 3;
  91. if (frame) {
  92. for (i = 0; i < 3; i++) {
  93. x4->pic.img.plane[i] = frame->data[i];
  94. x4->pic.img.i_stride[i] = frame->linesize[i];
  95. }
  96. x4->pic.i_pts = frame->pts;
  97. x4->pic.i_type = XAVS_TYPE_AUTO;
  98. }
  99. if (xavs_encoder_encode(x4->enc, &nal, &nnal,
  100. frame? &x4->pic: NULL, &pic_out) < 0)
  101. return -1;
  102. bufsize = encode_nals(ctx, buf, bufsize, nal, nnal, 0);
  103. if (bufsize < 0)
  104. return -1;
  105. if (!bufsize && !frame && !(x4->end_of_stream)){
  106. buf[bufsize] = 0x0;
  107. buf[bufsize+1] = 0x0;
  108. buf[bufsize+2] = 0x01;
  109. buf[bufsize+3] = 0xb1;
  110. bufsize += 4;
  111. x4->end_of_stream = END_OF_STREAM;
  112. return bufsize;
  113. }
  114. /* FIXME: libxavs now provides DTS */
  115. /* but AVFrame doesn't have a field for it. */
  116. x4->out_pic.pts = pic_out.i_pts;
  117. switch (pic_out.i_type) {
  118. case XAVS_TYPE_IDR:
  119. case XAVS_TYPE_I:
  120. x4->out_pic.pict_type = FF_I_TYPE;
  121. break;
  122. case XAVS_TYPE_P:
  123. x4->out_pic.pict_type = FF_P_TYPE;
  124. break;
  125. case XAVS_TYPE_B:
  126. case XAVS_TYPE_BREF:
  127. x4->out_pic.pict_type = FF_B_TYPE;
  128. break;
  129. }
  130. /* There is no IDR frame in AVS JiZhun */
  131. /* Sequence header is used as a flag */
  132. x4->out_pic.key_frame = pic_out.i_type == XAVS_TYPE_I;
  133. x4->out_pic.quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
  134. return bufsize;
  135. }
  136. static av_cold int XAVS_close(AVCodecContext *avctx)
  137. {
  138. XavsContext *x4 = avctx->priv_data;
  139. av_freep(&avctx->extradata);
  140. av_free(x4->sei);
  141. if (x4->enc)
  142. xavs_encoder_close(x4->enc);
  143. return 0;
  144. }
  145. static av_cold int XAVS_init(AVCodecContext *avctx)
  146. {
  147. XavsContext *x4 = avctx->priv_data;
  148. x4->sei_size = 0;
  149. xavs_param_default(&x4->params);
  150. x4->params.pf_log = XAVS_log;
  151. x4->params.p_log_private = avctx;
  152. x4->params.i_keyint_max = avctx->gop_size;
  153. x4->params.rc.i_bitrate = avctx->bit_rate / 1000;
  154. x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
  155. x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate / 1000;
  156. x4->params.rc.b_stat_write = avctx->flags & CODEC_FLAG_PASS1;
  157. if (avctx->flags & CODEC_FLAG_PASS2) {
  158. x4->params.rc.b_stat_read = 1;
  159. } else {
  160. if (avctx->crf) {
  161. x4->params.rc.i_rc_method = XAVS_RC_CRF;
  162. x4->params.rc.f_rf_constant = avctx->crf;
  163. } else if (avctx->cqp > -1) {
  164. x4->params.rc.i_rc_method = XAVS_RC_CQP;
  165. x4->params.rc.i_qp_constant = avctx->cqp;
  166. }
  167. }
  168. /* if neither crf nor cqp modes are selected we have to enable the RC */
  169. /* we do it this way because we cannot check if the bitrate has been set */
  170. if (!(avctx->crf || (avctx->cqp > -1)))
  171. x4->params.rc.i_rc_method = XAVS_RC_ABR;
  172. x4->params.i_bframe = avctx->max_b_frames;
  173. /* cabac is not included in AVS JiZhun Profile */
  174. x4->params.b_cabac = 0;
  175. x4->params.i_bframe_adaptive = avctx->b_frame_strategy;
  176. x4->params.i_bframe_bias = avctx->bframebias;
  177. avctx->has_b_frames = !!avctx->max_b_frames;
  178. /* AVS doesn't allow B picture as reference */
  179. /* The max allowed reference frame number of B is 2 */
  180. x4->params.i_keyint_min = avctx->keyint_min;
  181. if (x4->params.i_keyint_min > x4->params.i_keyint_max)
  182. x4->params.i_keyint_min = x4->params.i_keyint_max;
  183. x4->params.i_scenecut_threshold = avctx->scenechange_threshold;
  184. // x4->params.b_deblocking_filter = avctx->flags & CODEC_FLAG_LOOP_FILTER;
  185. x4->params.i_deblocking_filter_alphac0 = avctx->deblockalpha;
  186. x4->params.i_deblocking_filter_beta = avctx->deblockbeta;
  187. x4->params.rc.i_qp_min = avctx->qmin;
  188. x4->params.rc.i_qp_max = avctx->qmax;
  189. x4->params.rc.i_qp_step = avctx->max_qdiff;
  190. x4->params.rc.f_qcompress = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
  191. x4->params.rc.f_qblur = avctx->qblur; /* temporally blur quants */
  192. x4->params.rc.f_complexity_blur = avctx->complexityblur;
  193. x4->params.i_frame_reference = avctx->refs;
  194. x4->params.i_width = avctx->width;
  195. x4->params.i_height = avctx->height;
  196. x4->params.vui.i_sar_width = avctx->sample_aspect_ratio.num;
  197. x4->params.vui.i_sar_height = avctx->sample_aspect_ratio.den;
  198. /* This is only used for counting the fps */
  199. x4->params.i_fps_num = avctx->time_base.den;
  200. x4->params.i_fps_den = avctx->time_base.num;
  201. x4->params.analyse.inter = XAVS_ANALYSE_I8x8 |XAVS_ANALYSE_PSUB16x16| XAVS_ANALYSE_BSUB16x16;
  202. if (avctx->partitions) {
  203. if (avctx->partitions & XAVS_PART_I8X8)
  204. x4->params.analyse.inter |= XAVS_ANALYSE_I8x8;
  205. if (avctx->partitions & XAVS_PART_P8X8)
  206. x4->params.analyse.inter |= XAVS_ANALYSE_PSUB16x16;
  207. if (avctx->partitions & XAVS_PART_B8X8)
  208. x4->params.analyse.inter |= XAVS_ANALYSE_BSUB16x16;
  209. }
  210. x4->params.analyse.i_direct_mv_pred = avctx->directpred;
  211. x4->params.analyse.b_weighted_bipred = avctx->flags2 & CODEC_FLAG2_WPRED;
  212. switch (avctx->me_method) {
  213. case ME_EPZS:
  214. x4->params.analyse.i_me_method = XAVS_ME_DIA;
  215. break;
  216. case ME_HEX:
  217. x4->params.analyse.i_me_method = XAVS_ME_HEX;
  218. break;
  219. case ME_UMH:
  220. x4->params.analyse.i_me_method = XAVS_ME_UMH;
  221. break;
  222. case ME_FULL:
  223. x4->params.analyse.i_me_method = XAVS_ME_ESA;
  224. break;
  225. case ME_TESA:
  226. x4->params.analyse.i_me_method = XAVS_ME_TESA;
  227. break;
  228. default:
  229. x4->params.analyse.i_me_method = XAVS_ME_HEX;
  230. }
  231. x4->params.analyse.i_me_range = avctx->me_range;
  232. x4->params.analyse.i_subpel_refine = avctx->me_subpel_quality;
  233. x4->params.analyse.b_mixed_references = avctx->flags2 & CODEC_FLAG2_MIXED_REFS;
  234. x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
  235. /* AVS P2 only enables 8x8 transform */
  236. x4->params.analyse.b_transform_8x8 = 1; //avctx->flags2 & CODEC_FLAG2_8X8DCT;
  237. x4->params.analyse.b_fast_pskip = avctx->flags2 & CODEC_FLAG2_FASTPSKIP;
  238. x4->params.analyse.i_trellis = avctx->trellis;
  239. x4->params.analyse.i_noise_reduction = avctx->noise_reduction;
  240. if (avctx->level > 0)
  241. x4->params.i_level_idc = avctx->level;
  242. x4->params.rc.f_rate_tolerance =
  243. (float)avctx->bit_rate_tolerance/avctx->bit_rate;
  244. if ((avctx->rc_buffer_size) &&
  245. (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
  246. x4->params.rc.f_vbv_buffer_init =
  247. (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
  248. } else
  249. x4->params.rc.f_vbv_buffer_init = 0.9;
  250. /* TAG:do we have MB tree RC method */
  251. /* what is the RC method we are now using? Default NO */
  252. x4->params.rc.b_mb_tree = !!(avctx->flags2 & CODEC_FLAG2_MBTREE);
  253. x4->params.rc.f_ip_factor = 1 / fabs(avctx->i_quant_factor);
  254. x4->params.rc.f_pb_factor = avctx->b_quant_factor;
  255. x4->params.analyse.i_chroma_qp_offset = avctx->chromaoffset;
  256. x4->params.analyse.b_psnr = avctx->flags & CODEC_FLAG_PSNR;
  257. x4->params.i_log_level = XAVS_LOG_DEBUG;
  258. x4->params.b_aud = avctx->flags2 & CODEC_FLAG2_AUD;
  259. x4->params.i_threads = avctx->thread_count;
  260. x4->params.b_interlaced = avctx->flags & CODEC_FLAG_INTERLACED_DCT;
  261. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER)
  262. x4->params.b_repeat_headers = 0;
  263. x4->enc = xavs_encoder_open(&x4->params);
  264. if (!x4->enc)
  265. return -1;
  266. avctx->coded_frame = &x4->out_pic;
  267. /* TAG: Do we have GLOBAL HEADER in AVS */
  268. /* We Have PPS and SPS in AVS */
  269. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
  270. xavs_nal_t *nal;
  271. int nnal, s;
  272. s = xavs_encoder_headers(x4->enc, &nal, &nnal);
  273. avctx->extradata = av_malloc(s);
  274. avctx->extradata_size = encode_nals(avctx, avctx->extradata, s, nal, nnal, 1);
  275. }
  276. return 0;
  277. }
  278. AVCodec libxavs_encoder = {
  279. .name = "libxavs",
  280. .type = CODEC_TYPE_VIDEO,
  281. .id = CODEC_ID_CAVS,
  282. .priv_data_size = sizeof(XavsContext),
  283. .init = XAVS_init,
  284. .encode = XAVS_frame,
  285. .close = XAVS_close,
  286. .capabilities = CODEC_CAP_DELAY,
  287. .pix_fmts = (const enum PixelFormat[]) { PIX_FMT_YUV420P, PIX_FMT_NONE },
  288. .long_name = NULL_IF_CONFIG_SMALL("libxavs - the Chinese Audio Video Standard Encoder"),
  289. };