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.

388 lines
14KB

  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 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 <stdio.h>
  22. #include <stdlib.h>
  23. #include <string.h>
  24. #include <math.h>
  25. #include <stdint.h>
  26. #include <float.h>
  27. #include <xavs.h>
  28. #include "avcodec.h"
  29. #include "internal.h"
  30. #include "libavutil/opt.h"
  31. #define END_OF_STREAM 0x001
  32. #define XAVS_PART_I8X8 0x002 /* Analyze i8x8 (requires 8x8 transform) */
  33. #define XAVS_PART_P8X8 0x010 /* Analyze p16x8, p8x16 and p8x8 */
  34. #define XAVS_PART_B8X8 0x100 /* Analyze b16x8, b*/
  35. typedef struct XavsContext {
  36. xavs_param_t params;
  37. xavs_t *enc;
  38. xavs_picture_t pic;
  39. uint8_t *sei;
  40. int sei_size;
  41. AVFrame out_pic;
  42. int end_of_stream;
  43. float crf;
  44. int cqp;
  45. int b_bias;
  46. float cplxblur;
  47. int direct_pred;
  48. int aud;
  49. int fast_pskip;
  50. int mbtree;
  51. int mixed_refs;
  52. } XavsContext;
  53. static void XAVS_log(void *p, int level, const char *fmt, va_list args)
  54. {
  55. static const int level_map[] = {
  56. [XAVS_LOG_ERROR] = AV_LOG_ERROR,
  57. [XAVS_LOG_WARNING] = AV_LOG_WARNING,
  58. [XAVS_LOG_INFO] = AV_LOG_INFO,
  59. [XAVS_LOG_DEBUG] = AV_LOG_DEBUG
  60. };
  61. if (level < 0 || level > XAVS_LOG_DEBUG)
  62. return;
  63. av_vlog(p, level_map[level], fmt, args);
  64. }
  65. static int encode_nals(AVCodecContext *ctx, uint8_t *buf,
  66. int size, xavs_nal_t *nals,
  67. int nnal, int skip_sei)
  68. {
  69. XavsContext *x4 = ctx->priv_data;
  70. uint8_t *p = buf;
  71. int i, s;
  72. /* Write the SEI as part of the first frame. */
  73. if (x4->sei_size > 0 && nnal > 0) {
  74. memcpy(p, x4->sei, x4->sei_size);
  75. p += x4->sei_size;
  76. x4->sei_size = 0;
  77. }
  78. for (i = 0; i < nnal; i++) {
  79. /* Don't put the SEI in extradata. */
  80. if (skip_sei && nals[i].i_type == NAL_SEI) {
  81. x4->sei = av_malloc( 5 + nals[i].i_payload * 4 / 3 );
  82. if (xavs_nal_encode(x4->sei, &x4->sei_size, 1, nals + i) < 0)
  83. return -1;
  84. continue;
  85. }
  86. s = xavs_nal_encode(p, &size, 1, nals + i);
  87. if (s < 0)
  88. return -1;
  89. p += s;
  90. }
  91. return p - buf;
  92. }
  93. static int XAVS_frame(AVCodecContext *ctx, uint8_t *buf,
  94. int bufsize, void *data)
  95. {
  96. XavsContext *x4 = ctx->priv_data;
  97. AVFrame *frame = data;
  98. xavs_nal_t *nal;
  99. int nnal, i;
  100. xavs_picture_t pic_out;
  101. x4->pic.img.i_csp = XAVS_CSP_I420;
  102. x4->pic.img.i_plane = 3;
  103. if (frame) {
  104. for (i = 0; i < 3; i++) {
  105. x4->pic.img.plane[i] = frame->data[i];
  106. x4->pic.img.i_stride[i] = frame->linesize[i];
  107. }
  108. x4->pic.i_pts = frame->pts;
  109. x4->pic.i_type = XAVS_TYPE_AUTO;
  110. }
  111. if (xavs_encoder_encode(x4->enc, &nal, &nnal,
  112. frame? &x4->pic: NULL, &pic_out) < 0)
  113. return -1;
  114. bufsize = encode_nals(ctx, buf, bufsize, nal, nnal, 0);
  115. if (bufsize < 0)
  116. return -1;
  117. if (!bufsize && !frame && !(x4->end_of_stream)){
  118. buf[bufsize] = 0x0;
  119. buf[bufsize+1] = 0x0;
  120. buf[bufsize+2] = 0x01;
  121. buf[bufsize+3] = 0xb1;
  122. bufsize += 4;
  123. x4->end_of_stream = END_OF_STREAM;
  124. return bufsize;
  125. }
  126. /* FIXME: libxavs now provides DTS */
  127. /* but AVFrame doesn't have a field for it. */
  128. x4->out_pic.pts = pic_out.i_pts;
  129. switch (pic_out.i_type) {
  130. case XAVS_TYPE_IDR:
  131. case XAVS_TYPE_I:
  132. x4->out_pic.pict_type = AV_PICTURE_TYPE_I;
  133. break;
  134. case XAVS_TYPE_P:
  135. x4->out_pic.pict_type = AV_PICTURE_TYPE_P;
  136. break;
  137. case XAVS_TYPE_B:
  138. case XAVS_TYPE_BREF:
  139. x4->out_pic.pict_type = AV_PICTURE_TYPE_B;
  140. break;
  141. }
  142. /* There is no IDR frame in AVS JiZhun */
  143. /* Sequence header is used as a flag */
  144. x4->out_pic.key_frame = pic_out.i_type == XAVS_TYPE_I;
  145. x4->out_pic.quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
  146. return bufsize;
  147. }
  148. static av_cold int XAVS_close(AVCodecContext *avctx)
  149. {
  150. XavsContext *x4 = avctx->priv_data;
  151. av_freep(&avctx->extradata);
  152. av_free(x4->sei);
  153. if (x4->enc)
  154. xavs_encoder_close(x4->enc);
  155. return 0;
  156. }
  157. static av_cold int XAVS_init(AVCodecContext *avctx)
  158. {
  159. XavsContext *x4 = avctx->priv_data;
  160. x4->sei_size = 0;
  161. xavs_param_default(&x4->params);
  162. x4->params.pf_log = XAVS_log;
  163. x4->params.p_log_private = avctx;
  164. x4->params.i_keyint_max = avctx->gop_size;
  165. if (avctx->bit_rate) {
  166. x4->params.rc.i_bitrate = avctx->bit_rate / 1000;
  167. x4->params.rc.i_rc_method = XAVS_RC_ABR;
  168. }
  169. x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
  170. x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate / 1000;
  171. x4->params.rc.b_stat_write = avctx->flags & CODEC_FLAG_PASS1;
  172. if (avctx->flags & CODEC_FLAG_PASS2) {
  173. x4->params.rc.b_stat_read = 1;
  174. } else {
  175. if (x4->crf >= 0) {
  176. x4->params.rc.i_rc_method = XAVS_RC_CRF;
  177. x4->params.rc.f_rf_constant = x4->crf;
  178. } else if (x4->cqp >= 0) {
  179. x4->params.rc.i_rc_method = XAVS_RC_CQP;
  180. x4->params.rc.i_qp_constant = x4->cqp;
  181. }
  182. }
  183. if (x4->aud >= 0)
  184. x4->params.b_aud = x4->aud;
  185. if (x4->mbtree >= 0)
  186. x4->params.rc.b_mb_tree = x4->mbtree;
  187. if (x4->direct_pred >= 0)
  188. x4->params.analyse.i_direct_mv_pred = x4->direct_pred;
  189. if (x4->fast_pskip >= 0)
  190. x4->params.analyse.b_fast_pskip = x4->fast_pskip;
  191. if (x4->mixed_refs >= 0)
  192. x4->params.analyse.b_mixed_references = x4->mixed_refs;
  193. if (x4->b_bias != INT_MIN)
  194. x4->params.i_bframe_bias = x4->b_bias;
  195. if (x4->cplxblur >= 0)
  196. x4->params.rc.f_complexity_blur = x4->cplxblur;
  197. x4->params.i_bframe = avctx->max_b_frames;
  198. /* cabac is not included in AVS JiZhun Profile */
  199. x4->params.b_cabac = 0;
  200. x4->params.i_bframe_adaptive = avctx->b_frame_strategy;
  201. avctx->has_b_frames = !!avctx->max_b_frames;
  202. /* AVS doesn't allow B picture as reference */
  203. /* The max allowed reference frame number of B is 2 */
  204. x4->params.i_keyint_min = avctx->keyint_min;
  205. if (x4->params.i_keyint_min > x4->params.i_keyint_max)
  206. x4->params.i_keyint_min = x4->params.i_keyint_max;
  207. x4->params.i_scenecut_threshold = avctx->scenechange_threshold;
  208. // x4->params.b_deblocking_filter = avctx->flags & CODEC_FLAG_LOOP_FILTER;
  209. x4->params.rc.i_qp_min = avctx->qmin;
  210. x4->params.rc.i_qp_max = avctx->qmax;
  211. x4->params.rc.i_qp_step = avctx->max_qdiff;
  212. x4->params.rc.f_qcompress = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
  213. x4->params.rc.f_qblur = avctx->qblur; /* temporally blur quants */
  214. x4->params.i_frame_reference = avctx->refs;
  215. x4->params.i_width = avctx->width;
  216. x4->params.i_height = avctx->height;
  217. x4->params.vui.i_sar_width = avctx->sample_aspect_ratio.num;
  218. x4->params.vui.i_sar_height = avctx->sample_aspect_ratio.den;
  219. /* This is only used for counting the fps */
  220. x4->params.i_fps_num = avctx->time_base.den;
  221. x4->params.i_fps_den = avctx->time_base.num;
  222. x4->params.analyse.inter = XAVS_ANALYSE_I8x8 |XAVS_ANALYSE_PSUB16x16| XAVS_ANALYSE_BSUB16x16;
  223. switch (avctx->me_method) {
  224. case ME_EPZS:
  225. x4->params.analyse.i_me_method = XAVS_ME_DIA;
  226. break;
  227. case ME_HEX:
  228. x4->params.analyse.i_me_method = XAVS_ME_HEX;
  229. break;
  230. case ME_UMH:
  231. x4->params.analyse.i_me_method = XAVS_ME_UMH;
  232. break;
  233. case ME_FULL:
  234. x4->params.analyse.i_me_method = XAVS_ME_ESA;
  235. break;
  236. case ME_TESA:
  237. x4->params.analyse.i_me_method = XAVS_ME_TESA;
  238. break;
  239. default:
  240. x4->params.analyse.i_me_method = XAVS_ME_HEX;
  241. }
  242. x4->params.analyse.i_me_range = avctx->me_range;
  243. x4->params.analyse.i_subpel_refine = avctx->me_subpel_quality;
  244. x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
  245. /* AVS P2 only enables 8x8 transform */
  246. x4->params.analyse.b_transform_8x8 = 1; //avctx->flags2 & CODEC_FLAG2_8X8DCT;
  247. x4->params.analyse.i_trellis = avctx->trellis;
  248. x4->params.analyse.i_noise_reduction = avctx->noise_reduction;
  249. if (avctx->level > 0)
  250. x4->params.i_level_idc = avctx->level;
  251. x4->params.rc.f_rate_tolerance =
  252. (float)avctx->bit_rate_tolerance/avctx->bit_rate;
  253. if ((avctx->rc_buffer_size) &&
  254. (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
  255. x4->params.rc.f_vbv_buffer_init =
  256. (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
  257. } else
  258. x4->params.rc.f_vbv_buffer_init = 0.9;
  259. /* TAG:do we have MB tree RC method */
  260. /* what is the RC method we are now using? Default NO */
  261. x4->params.rc.f_ip_factor = 1 / fabs(avctx->i_quant_factor);
  262. x4->params.rc.f_pb_factor = avctx->b_quant_factor;
  263. x4->params.analyse.i_chroma_qp_offset = avctx->chromaoffset;
  264. x4->params.analyse.b_psnr = avctx->flags & CODEC_FLAG_PSNR;
  265. x4->params.i_log_level = XAVS_LOG_DEBUG;
  266. x4->params.i_threads = avctx->thread_count;
  267. x4->params.b_interlaced = avctx->flags & CODEC_FLAG_INTERLACED_DCT;
  268. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER)
  269. x4->params.b_repeat_headers = 0;
  270. x4->enc = xavs_encoder_open(&x4->params);
  271. if (!x4->enc)
  272. return -1;
  273. avctx->coded_frame = &x4->out_pic;
  274. /* TAG: Do we have GLOBAL HEADER in AVS */
  275. /* We Have PPS and SPS in AVS */
  276. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
  277. xavs_nal_t *nal;
  278. int nnal, s;
  279. s = xavs_encoder_headers(x4->enc, &nal, &nnal);
  280. avctx->extradata = av_malloc(s);
  281. avctx->extradata_size = encode_nals(avctx, avctx->extradata, s, nal, nnal, 1);
  282. }
  283. return 0;
  284. }
  285. #define OFFSET(x) offsetof(XavsContext, x)
  286. #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  287. static const AVOption options[] = {
  288. { "crf", "Select the quality for constant quality mode", OFFSET(crf), AV_OPT_TYPE_FLOAT, {-1 }, -1, FLT_MAX, VE },
  289. { "qp", "Constant quantization parameter rate control method",OFFSET(cqp), AV_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE },
  290. { "b-bias", "Influences how often B-frames are used", OFFSET(b_bias), AV_OPT_TYPE_INT, {INT_MIN}, INT_MIN, INT_MAX, VE },
  291. { "cplxblur", "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), AV_OPT_TYPE_FLOAT, {-1 }, -1, FLT_MAX, VE},
  292. { "direct-pred", "Direct MV prediction mode", OFFSET(direct_pred), AV_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE, "direct-pred" },
  293. { "none", NULL, 0, AV_OPT_TYPE_CONST, { XAVS_DIRECT_PRED_NONE }, 0, 0, VE, "direct-pred" },
  294. { "spatial", NULL, 0, AV_OPT_TYPE_CONST, { XAVS_DIRECT_PRED_SPATIAL }, 0, 0, VE, "direct-pred" },
  295. { "temporal", NULL, 0, AV_OPT_TYPE_CONST, { XAVS_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
  296. { "auto", NULL, 0, AV_OPT_TYPE_CONST, { XAVS_DIRECT_PRED_AUTO }, 0, 0, VE, "direct-pred" },
  297. { "aud", "Use access unit delimiters.", OFFSET(aud), AV_OPT_TYPE_INT, {-1 }, -1, 1, VE},
  298. { "mbtree", "Use macroblock tree ratecontrol.", OFFSET(mbtree), AV_OPT_TYPE_INT, {-1 }, -1, 1, VE},
  299. { "mixed-refs", "One reference per partition, as opposed to one reference per macroblock", OFFSET(mixed_refs), AV_OPT_TYPE_INT, {-1}, -1, 1, VE },
  300. { "fast-pskip", NULL, OFFSET(fast_pskip), AV_OPT_TYPE_INT, {-1 }, -1, 1, VE},
  301. { NULL },
  302. };
  303. static const AVClass class = {
  304. .class_name = "libxavs",
  305. .item_name = av_default_item_name,
  306. .option = options,
  307. .version = LIBAVUTIL_VERSION_INT,
  308. };
  309. static const AVCodecDefault xavs_defaults[] = {
  310. { "b", "0" },
  311. { NULL },
  312. };
  313. AVCodec ff_libxavs_encoder = {
  314. .name = "libxavs",
  315. .type = AVMEDIA_TYPE_VIDEO,
  316. .id = CODEC_ID_CAVS,
  317. .priv_data_size = sizeof(XavsContext),
  318. .init = XAVS_init,
  319. .encode = XAVS_frame,
  320. .close = XAVS_close,
  321. .capabilities = CODEC_CAP_DELAY | CODEC_CAP_AUTO_THREADS,
  322. .pix_fmts = (const enum PixelFormat[]) { PIX_FMT_YUV420P, PIX_FMT_NONE },
  323. .long_name = NULL_IF_CONFIG_SMALL("libxavs - the Chinese Audio Video Standard Encoder"),
  324. .priv_class = &class,
  325. .defaults = xavs_defaults,
  326. };