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.

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