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.

289 lines
11KB

  1. /*
  2. * OpenH264 video encoder
  3. * Copyright (C) 2014 Martin Storsjo
  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 <wels/codec_api.h>
  22. #include <wels/codec_ver.h>
  23. #include "libavutil/attributes.h"
  24. #include "libavutil/common.h"
  25. #include "libavutil/opt.h"
  26. #include "libavutil/internal.h"
  27. #include "libavutil/intreadwrite.h"
  28. #include "libavutil/mathematics.h"
  29. #include "avcodec.h"
  30. #include "internal.h"
  31. #include "libopenh264.h"
  32. typedef struct SVCContext {
  33. const AVClass *av_class;
  34. ISVCEncoder *encoder;
  35. int slice_mode;
  36. int loopfilter;
  37. char *profile;
  38. int max_nal_size;
  39. int skip_frames;
  40. int skipped;
  41. int cabac;
  42. } SVCContext;
  43. #define OFFSET(x) offsetof(SVCContext, x)
  44. #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  45. static const AVOption options[] = {
  46. { "slice_mode", "Slice mode", OFFSET(slice_mode), AV_OPT_TYPE_INT, { .i64 = SM_AUTO_SLICE }, SM_SINGLE_SLICE, SM_RESERVED, VE, "slice_mode" },
  47. { "fixed", "A fixed number of slices", 0, AV_OPT_TYPE_CONST, { .i64 = SM_FIXEDSLCNUM_SLICE }, 0, 0, VE, "slice_mode" },
  48. { "rowmb", "One slice per row of macroblocks", 0, AV_OPT_TYPE_CONST, { .i64 = SM_ROWMB_SLICE }, 0, 0, VE, "slice_mode" },
  49. { "auto", "Automatic number of slices according to number of threads", 0, AV_OPT_TYPE_CONST, { .i64 = SM_AUTO_SLICE }, 0, 0, VE, "slice_mode" },
  50. { "dyn", "Dynamic slicing", 0, AV_OPT_TYPE_CONST, { .i64 = SM_DYN_SLICE }, 0, 0, VE, "slice_mode" },
  51. { "loopfilter", "Enable loop filter", OFFSET(loopfilter), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, VE },
  52. { "profile", "Set profile restrictions", OFFSET(profile), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, VE },
  53. { "max_nal_size", "Set maximum NAL size in bytes", OFFSET(max_nal_size), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },
  54. { "allow_skip_frames", "Allow skipping frames to hit the target bitrate", OFFSET(skip_frames), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
  55. { "cabac", "Enable cabac", OFFSET(cabac), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, VE },
  56. { NULL }
  57. };
  58. static const AVClass class = {
  59. "libopenh264enc", av_default_item_name, options, LIBAVUTIL_VERSION_INT
  60. };
  61. static av_cold int svc_encode_close(AVCodecContext *avctx)
  62. {
  63. SVCContext *s = avctx->priv_data;
  64. if (s->encoder)
  65. WelsDestroySVCEncoder(s->encoder);
  66. if (s->skipped > 0)
  67. av_log(avctx, AV_LOG_WARNING, "%d frames skipped\n", s->skipped);
  68. return 0;
  69. }
  70. static av_cold int svc_encode_init(AVCodecContext *avctx)
  71. {
  72. SVCContext *s = avctx->priv_data;
  73. SEncParamExt param = { 0 };
  74. int err;
  75. int log_level;
  76. WelsTraceCallback callback_function;
  77. AVCPBProperties *props;
  78. if ((err = ff_libopenh264_check_version(avctx)) < 0)
  79. return err;
  80. // Use a default error for multiple error paths below
  81. err = AVERROR_UNKNOWN;
  82. if (WelsCreateSVCEncoder(&s->encoder)) {
  83. av_log(avctx, AV_LOG_ERROR, "Unable to create encoder\n");
  84. return AVERROR_UNKNOWN;
  85. }
  86. // Pass all libopenh264 messages to our callback, to allow ourselves to filter them.
  87. log_level = WELS_LOG_DETAIL;
  88. (*s->encoder)->SetOption(s->encoder, ENCODER_OPTION_TRACE_LEVEL, &log_level);
  89. // Set the logging callback function to one that uses av_log() (see implementation above).
  90. callback_function = (WelsTraceCallback) ff_libopenh264_trace_callback;
  91. (*s->encoder)->SetOption(s->encoder, ENCODER_OPTION_TRACE_CALLBACK, (void *)&callback_function);
  92. // Set the AVCodecContext as the libopenh264 callback context so that it can be passed to av_log().
  93. (*s->encoder)->SetOption(s->encoder, ENCODER_OPTION_TRACE_CALLBACK_CONTEXT, (void *)&avctx);
  94. (*s->encoder)->GetDefaultParams(s->encoder, &param);
  95. #if FF_API_CODER_TYPE
  96. FF_DISABLE_DEPRECATION_WARNINGS
  97. if (!s->cabac)
  98. s->cabac = avctx->coder_type == FF_CODER_TYPE_AC;
  99. FF_ENABLE_DEPRECATION_WARNINGS
  100. #endif
  101. param.fMaxFrameRate = avctx->time_base.den / avctx->time_base.num;
  102. param.iPicWidth = avctx->width;
  103. param.iPicHeight = avctx->height;
  104. param.iTargetBitrate = avctx->bit_rate;
  105. param.iMaxBitrate = FFMAX(avctx->rc_max_rate, avctx->bit_rate);
  106. param.iRCMode = RC_QUALITY_MODE;
  107. param.iTemporalLayerNum = 1;
  108. param.iSpatialLayerNum = 1;
  109. param.bEnableDenoise = 0;
  110. param.bEnableBackgroundDetection = 1;
  111. param.bEnableAdaptiveQuant = 1;
  112. param.bEnableFrameSkip = s->skip_frames;
  113. param.bEnableLongTermReference = 0;
  114. param.iLtrMarkPeriod = 30;
  115. param.uiIntraPeriod = avctx->gop_size;
  116. #if OPENH264_VER_AT_LEAST(1, 4)
  117. param.eSpsPpsIdStrategy = CONSTANT_ID;
  118. #else
  119. param.bEnableSpsPpsIdAddition = 0;
  120. #endif
  121. param.bPrefixNalAddingCtrl = 0;
  122. param.iLoopFilterDisableIdc = !s->loopfilter;
  123. param.iEntropyCodingModeFlag = 0;
  124. param.iMultipleThreadIdc = avctx->thread_count;
  125. if (s->profile && !strcmp(s->profile, "main"))
  126. param.iEntropyCodingModeFlag = 1;
  127. else if (!s->profile && s->cabac)
  128. param.iEntropyCodingModeFlag = 1;
  129. param.sSpatialLayers[0].iVideoWidth = param.iPicWidth;
  130. param.sSpatialLayers[0].iVideoHeight = param.iPicHeight;
  131. param.sSpatialLayers[0].fFrameRate = param.fMaxFrameRate;
  132. param.sSpatialLayers[0].iSpatialBitrate = param.iTargetBitrate;
  133. param.sSpatialLayers[0].iMaxSpatialBitrate = param.iMaxBitrate;
  134. if ((avctx->slices > 1) && (s->max_nal_size)) {
  135. av_log(avctx, AV_LOG_ERROR,
  136. "Invalid combination -slices %d and -max_nal_size %d.\n",
  137. avctx->slices, s->max_nal_size);
  138. goto fail;
  139. }
  140. if (avctx->slices > 1)
  141. s->slice_mode = SM_FIXEDSLCNUM_SLICE;
  142. if (s->max_nal_size)
  143. s->slice_mode = SM_DYN_SLICE;
  144. param.sSpatialLayers[0].sSliceCfg.uiSliceMode = s->slice_mode;
  145. param.sSpatialLayers[0].sSliceCfg.sSliceArgument.uiSliceNum = avctx->slices;
  146. if (s->slice_mode == SM_DYN_SLICE) {
  147. if (s->max_nal_size){
  148. param.uiMaxNalSize = s->max_nal_size;
  149. param.sSpatialLayers[0].sSliceCfg.sSliceArgument.uiSliceSizeConstraint = s->max_nal_size;
  150. } else {
  151. av_log(avctx, AV_LOG_ERROR, "Invalid -max_nal_size, "
  152. "specify a valid max_nal_size to use -slice_mode dyn\n");
  153. goto fail;
  154. }
  155. }
  156. if ((*s->encoder)->InitializeExt(s->encoder, &param) != cmResultSuccess) {
  157. av_log(avctx, AV_LOG_ERROR, "Initialize failed\n");
  158. goto fail;
  159. }
  160. if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
  161. SFrameBSInfo fbi = { 0 };
  162. int i, size = 0;
  163. (*s->encoder)->EncodeParameterSets(s->encoder, &fbi);
  164. for (i = 0; i < fbi.sLayerInfo[0].iNalCount; i++)
  165. size += fbi.sLayerInfo[0].pNalLengthInByte[i];
  166. avctx->extradata = av_mallocz(size + AV_INPUT_BUFFER_PADDING_SIZE);
  167. if (!avctx->extradata) {
  168. err = AVERROR(ENOMEM);
  169. goto fail;
  170. }
  171. avctx->extradata_size = size;
  172. memcpy(avctx->extradata, fbi.sLayerInfo[0].pBsBuf, size);
  173. }
  174. props = ff_add_cpb_side_data(avctx);
  175. if (!props) {
  176. err = AVERROR(ENOMEM);
  177. goto fail;
  178. }
  179. props->max_bitrate = param.iMaxBitrate;
  180. props->avg_bitrate = param.iTargetBitrate;
  181. return 0;
  182. fail:
  183. svc_encode_close(avctx);
  184. return err;
  185. }
  186. static int svc_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
  187. const AVFrame *frame, int *got_packet)
  188. {
  189. SVCContext *s = avctx->priv_data;
  190. SFrameBSInfo fbi = { 0 };
  191. int i, ret;
  192. int encoded;
  193. SSourcePicture sp = { 0 };
  194. int size = 0, layer, first_layer = 0;
  195. int layer_size[MAX_LAYER_NUM_OF_FRAME] = { 0 };
  196. sp.iColorFormat = videoFormatI420;
  197. for (i = 0; i < 3; i++) {
  198. sp.iStride[i] = frame->linesize[i];
  199. sp.pData[i] = frame->data[i];
  200. }
  201. sp.iPicWidth = avctx->width;
  202. sp.iPicHeight = avctx->height;
  203. encoded = (*s->encoder)->EncodeFrame(s->encoder, &sp, &fbi);
  204. if (encoded != cmResultSuccess) {
  205. av_log(avctx, AV_LOG_ERROR, "EncodeFrame failed\n");
  206. return AVERROR_UNKNOWN;
  207. }
  208. if (fbi.eFrameType == videoFrameTypeSkip) {
  209. s->skipped++;
  210. av_log(avctx, AV_LOG_DEBUG, "frame skipped\n");
  211. return 0;
  212. }
  213. first_layer = 0;
  214. // Normal frames are returned with one single layer, while IDR
  215. // frames have two layers, where the first layer contains the SPS/PPS.
  216. // If using global headers, don't include the SPS/PPS in the returned
  217. // packet - thus, only return one layer.
  218. if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER)
  219. first_layer = fbi.iLayerNum - 1;
  220. for (layer = first_layer; layer < fbi.iLayerNum; layer++) {
  221. for (i = 0; i < fbi.sLayerInfo[layer].iNalCount; i++)
  222. layer_size[layer] += fbi.sLayerInfo[layer].pNalLengthInByte[i];
  223. size += layer_size[layer];
  224. }
  225. av_log(avctx, AV_LOG_DEBUG, "%d slices\n", fbi.sLayerInfo[fbi.iLayerNum - 1].iNalCount);
  226. if ((ret = ff_alloc_packet(avpkt, size))) {
  227. av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
  228. return ret;
  229. }
  230. size = 0;
  231. for (layer = first_layer; layer < fbi.iLayerNum; layer++) {
  232. memcpy(avpkt->data + size, fbi.sLayerInfo[layer].pBsBuf, layer_size[layer]);
  233. size += layer_size[layer];
  234. }
  235. avpkt->pts = frame->pts;
  236. if (fbi.eFrameType == videoFrameTypeIDR)
  237. avpkt->flags |= AV_PKT_FLAG_KEY;
  238. *got_packet = 1;
  239. return 0;
  240. }
  241. AVCodec ff_libopenh264_encoder = {
  242. .name = "libopenh264",
  243. .long_name = NULL_IF_CONFIG_SMALL("OpenH264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
  244. .type = AVMEDIA_TYPE_VIDEO,
  245. .id = AV_CODEC_ID_H264,
  246. .priv_data_size = sizeof(SVCContext),
  247. .init = svc_encode_init,
  248. .encode2 = svc_encode_frame,
  249. .close = svc_encode_close,
  250. .capabilities = AV_CODEC_CAP_AUTO_THREADS,
  251. .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P,
  252. AV_PIX_FMT_NONE },
  253. .priv_class = &class,
  254. };