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.

302 lines
12KB

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