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.

313 lines
12KB

  1. /*
  2. * OpenH264 video encoder
  3. * Copyright (C) 2014 Martin Storsjo
  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 <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", "set 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", "set 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_BOOL, { .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. // Use a default error for multiple error paths below
  93. err = AVERROR_UNKNOWN;
  94. if (WelsCreateSVCEncoder(&s->encoder)) {
  95. av_log(avctx, AV_LOG_ERROR, "Unable to create encoder\n");
  96. return AVERROR_UNKNOWN;
  97. }
  98. // Pass all libopenh264 messages to our callback, to allow ourselves to filter them.
  99. log_level = WELS_LOG_DETAIL;
  100. (*s->encoder)->SetOption(s->encoder, ENCODER_OPTION_TRACE_LEVEL, &log_level);
  101. // Set the logging callback function to one that uses av_log() (see implementation above).
  102. callback_function = (WelsTraceCallback) ff_libopenh264_trace_callback;
  103. (*s->encoder)->SetOption(s->encoder, ENCODER_OPTION_TRACE_CALLBACK, (void *)&callback_function);
  104. // Set the AVCodecContext as the libopenh264 callback context so that it can be passed to av_log().
  105. (*s->encoder)->SetOption(s->encoder, ENCODER_OPTION_TRACE_CALLBACK_CONTEXT, (void *)&avctx);
  106. (*s->encoder)->GetDefaultParams(s->encoder, &param);
  107. #if FF_API_CODER_TYPE
  108. FF_DISABLE_DEPRECATION_WARNINGS
  109. if (!s->cabac)
  110. s->cabac = avctx->coder_type == FF_CODER_TYPE_AC;
  111. FF_ENABLE_DEPRECATION_WARNINGS
  112. #endif
  113. param.fMaxFrameRate = 1/av_q2d(avctx->time_base);
  114. param.iPicWidth = avctx->width;
  115. param.iPicHeight = avctx->height;
  116. param.iTargetBitrate = avctx->bit_rate;
  117. param.iMaxBitrate = FFMAX(avctx->rc_max_rate, avctx->bit_rate);
  118. param.iRCMode = RC_QUALITY_MODE;
  119. param.iTemporalLayerNum = 1;
  120. param.iSpatialLayerNum = 1;
  121. param.bEnableDenoise = 0;
  122. param.bEnableBackgroundDetection = 1;
  123. param.bEnableAdaptiveQuant = 1;
  124. param.bEnableFrameSkip = s->skip_frames;
  125. param.bEnableLongTermReference = 0;
  126. param.iLtrMarkPeriod = 30;
  127. param.uiIntraPeriod = avctx->gop_size;
  128. #if OPENH264_VER_AT_LEAST(1, 4)
  129. param.eSpsPpsIdStrategy = CONSTANT_ID;
  130. #else
  131. param.bEnableSpsPpsIdAddition = 0;
  132. #endif
  133. param.bPrefixNalAddingCtrl = 0;
  134. param.iLoopFilterDisableIdc = !s->loopfilter;
  135. param.iEntropyCodingModeFlag = 0;
  136. param.iMultipleThreadIdc = avctx->thread_count;
  137. if (s->profile && !strcmp(s->profile, "main"))
  138. param.iEntropyCodingModeFlag = 1;
  139. else if (!s->profile && s->cabac)
  140. param.iEntropyCodingModeFlag = 1;
  141. param.sSpatialLayers[0].iVideoWidth = param.iPicWidth;
  142. param.sSpatialLayers[0].iVideoHeight = param.iPicHeight;
  143. param.sSpatialLayers[0].fFrameRate = param.fMaxFrameRate;
  144. param.sSpatialLayers[0].iSpatialBitrate = param.iTargetBitrate;
  145. param.sSpatialLayers[0].iMaxSpatialBitrate = param.iMaxBitrate;
  146. if ((avctx->slices > 1) && (s->max_nal_size)) {
  147. av_log(avctx, AV_LOG_ERROR,
  148. "Invalid combination -slices %d and -max_nal_size %d.\n",
  149. avctx->slices, s->max_nal_size);
  150. err = AVERROR(EINVAL);
  151. goto fail;
  152. }
  153. if (avctx->slices > 1)
  154. s->slice_mode = SM_FIXEDSLCNUM_SLICE;
  155. if (s->max_nal_size)
  156. s->slice_mode = SM_SIZELIMITED_SLICE;
  157. #if OPENH264_VER_AT_LEAST(1, 6)
  158. param.sSpatialLayers[0].sSliceArgument.uiSliceMode = s->slice_mode;
  159. param.sSpatialLayers[0].sSliceArgument.uiSliceNum = avctx->slices;
  160. #else
  161. param.sSpatialLayers[0].sSliceCfg.uiSliceMode = s->slice_mode;
  162. param.sSpatialLayers[0].sSliceCfg.sSliceArgument.uiSliceNum = avctx->slices;
  163. #endif
  164. if (s->slice_mode == SM_SIZELIMITED_SLICE) {
  165. if (s->max_nal_size){
  166. param.uiMaxNalSize = s->max_nal_size;
  167. #if OPENH264_VER_AT_LEAST(1, 6)
  168. param.sSpatialLayers[0].sSliceArgument.uiSliceSizeConstraint = s->max_nal_size;
  169. #else
  170. param.sSpatialLayers[0].sSliceCfg.sSliceArgument.uiSliceSizeConstraint = s->max_nal_size;
  171. #endif
  172. } else {
  173. av_log(avctx, AV_LOG_ERROR, "Invalid -max_nal_size, "
  174. "specify a valid max_nal_size to use -slice_mode dyn\n");
  175. err = AVERROR(EINVAL);
  176. goto fail;
  177. }
  178. }
  179. if ((*s->encoder)->InitializeExt(s->encoder, &param) != cmResultSuccess) {
  180. av_log(avctx, AV_LOG_ERROR, "Initialize failed\n");
  181. goto fail;
  182. }
  183. if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
  184. SFrameBSInfo fbi = { 0 };
  185. int i, size = 0;
  186. (*s->encoder)->EncodeParameterSets(s->encoder, &fbi);
  187. for (i = 0; i < fbi.sLayerInfo[0].iNalCount; i++)
  188. size += fbi.sLayerInfo[0].pNalLengthInByte[i];
  189. avctx->extradata = av_mallocz(size + AV_INPUT_BUFFER_PADDING_SIZE);
  190. if (!avctx->extradata) {
  191. err = AVERROR(ENOMEM);
  192. goto fail;
  193. }
  194. avctx->extradata_size = size;
  195. memcpy(avctx->extradata, fbi.sLayerInfo[0].pBsBuf, size);
  196. }
  197. props = ff_add_cpb_side_data(avctx);
  198. if (!props) {
  199. err = AVERROR(ENOMEM);
  200. goto fail;
  201. }
  202. props->max_bitrate = param.iMaxBitrate;
  203. props->avg_bitrate = param.iTargetBitrate;
  204. return 0;
  205. fail:
  206. svc_encode_close(avctx);
  207. return err;
  208. }
  209. static int svc_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
  210. const AVFrame *frame, int *got_packet)
  211. {
  212. SVCContext *s = avctx->priv_data;
  213. SFrameBSInfo fbi = { 0 };
  214. int i, ret;
  215. int encoded;
  216. SSourcePicture sp = { 0 };
  217. int size = 0, layer, first_layer = 0;
  218. int layer_size[MAX_LAYER_NUM_OF_FRAME] = { 0 };
  219. sp.iColorFormat = videoFormatI420;
  220. for (i = 0; i < 3; i++) {
  221. sp.iStride[i] = frame->linesize[i];
  222. sp.pData[i] = frame->data[i];
  223. }
  224. sp.iPicWidth = avctx->width;
  225. sp.iPicHeight = avctx->height;
  226. encoded = (*s->encoder)->EncodeFrame(s->encoder, &sp, &fbi);
  227. if (encoded != cmResultSuccess) {
  228. av_log(avctx, AV_LOG_ERROR, "EncodeFrame failed\n");
  229. return AVERROR_UNKNOWN;
  230. }
  231. if (fbi.eFrameType == videoFrameTypeSkip) {
  232. s->skipped++;
  233. av_log(avctx, AV_LOG_DEBUG, "frame skipped\n");
  234. return 0;
  235. }
  236. first_layer = 0;
  237. // Normal frames are returned with one single layer, while IDR
  238. // frames have two layers, where the first layer contains the SPS/PPS.
  239. // If using global headers, don't include the SPS/PPS in the returned
  240. // packet - thus, only return one layer.
  241. if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER)
  242. first_layer = fbi.iLayerNum - 1;
  243. for (layer = first_layer; layer < fbi.iLayerNum; layer++) {
  244. for (i = 0; i < fbi.sLayerInfo[layer].iNalCount; i++)
  245. layer_size[layer] += fbi.sLayerInfo[layer].pNalLengthInByte[i];
  246. size += layer_size[layer];
  247. }
  248. av_log(avctx, AV_LOG_DEBUG, "%d slices\n", fbi.sLayerInfo[fbi.iLayerNum - 1].iNalCount);
  249. if ((ret = ff_alloc_packet2(avctx, avpkt, size, size))) {
  250. av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
  251. return ret;
  252. }
  253. size = 0;
  254. for (layer = first_layer; layer < fbi.iLayerNum; layer++) {
  255. memcpy(avpkt->data + size, fbi.sLayerInfo[layer].pBsBuf, layer_size[layer]);
  256. size += layer_size[layer];
  257. }
  258. avpkt->pts = frame->pts;
  259. if (fbi.eFrameType == videoFrameTypeIDR)
  260. avpkt->flags |= AV_PKT_FLAG_KEY;
  261. *got_packet = 1;
  262. return 0;
  263. }
  264. AVCodec ff_libopenh264_encoder = {
  265. .name = "libopenh264",
  266. .long_name = NULL_IF_CONFIG_SMALL("OpenH264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
  267. .type = AVMEDIA_TYPE_VIDEO,
  268. .id = AV_CODEC_ID_H264,
  269. .priv_data_size = sizeof(SVCContext),
  270. .init = svc_encode_init,
  271. .encode2 = svc_encode_frame,
  272. .close = svc_encode_close,
  273. .capabilities = AV_CODEC_CAP_AUTO_THREADS,
  274. .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P,
  275. AV_PIX_FMT_NONE },
  276. .priv_class = &class,
  277. };