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.

305 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. .class_name = "libopenh264enc",
  72. .item_name = av_default_item_name,
  73. .option = options,
  74. .version = LIBAVUTIL_VERSION_INT,
  75. };
  76. static av_cold int svc_encode_close(AVCodecContext *avctx)
  77. {
  78. SVCContext *s = avctx->priv_data;
  79. if (s->encoder)
  80. WelsDestroySVCEncoder(s->encoder);
  81. if (s->skipped > 0)
  82. av_log(avctx, AV_LOG_WARNING, "%d frames skipped\n", s->skipped);
  83. return 0;
  84. }
  85. static av_cold int svc_encode_init(AVCodecContext *avctx)
  86. {
  87. SVCContext *s = avctx->priv_data;
  88. SEncParamExt param = { 0 };
  89. int err;
  90. int log_level;
  91. WelsTraceCallback callback_function;
  92. AVCPBProperties *props;
  93. if ((err = ff_libopenh264_check_version(avctx)) < 0)
  94. return err;
  95. if (WelsCreateSVCEncoder(&s->encoder)) {
  96. av_log(avctx, AV_LOG_ERROR, "Unable to create encoder\n");
  97. return AVERROR_UNKNOWN;
  98. }
  99. // Pass all libopenh264 messages to our callback, to allow ourselves to filter them.
  100. log_level = WELS_LOG_DETAIL;
  101. (*s->encoder)->SetOption(s->encoder, ENCODER_OPTION_TRACE_LEVEL, &log_level);
  102. // Set the logging callback function to one that uses av_log() (see implementation above).
  103. callback_function = (WelsTraceCallback) ff_libopenh264_trace_callback;
  104. (*s->encoder)->SetOption(s->encoder, ENCODER_OPTION_TRACE_CALLBACK, &callback_function);
  105. // Set the AVCodecContext as the libopenh264 callback context so that it can be passed to av_log().
  106. (*s->encoder)->SetOption(s->encoder, ENCODER_OPTION_TRACE_CALLBACK_CONTEXT, &avctx);
  107. (*s->encoder)->GetDefaultParams(s->encoder, &param);
  108. #if FF_API_CODER_TYPE
  109. FF_DISABLE_DEPRECATION_WARNINGS
  110. if (!s->cabac)
  111. s->cabac = avctx->coder_type == FF_CODER_TYPE_AC;
  112. FF_ENABLE_DEPRECATION_WARNINGS
  113. #endif
  114. param.fMaxFrameRate = avctx->time_base.den / avctx->time_base.num;
  115. param.iPicWidth = avctx->width;
  116. param.iPicHeight = avctx->height;
  117. param.iTargetBitrate = avctx->bit_rate;
  118. param.iMaxBitrate = FFMAX(avctx->rc_max_rate, avctx->bit_rate);
  119. param.iRCMode = RC_QUALITY_MODE;
  120. param.iTemporalLayerNum = 1;
  121. param.iSpatialLayerNum = 1;
  122. param.bEnableDenoise = 0;
  123. param.bEnableBackgroundDetection = 1;
  124. param.bEnableAdaptiveQuant = 1;
  125. param.bEnableFrameSkip = s->skip_frames;
  126. param.bEnableLongTermReference = 0;
  127. param.iLtrMarkPeriod = 30;
  128. param.uiIntraPeriod = avctx->gop_size;
  129. #if OPENH264_VER_AT_LEAST(1, 4)
  130. param.eSpsPpsIdStrategy = CONSTANT_ID;
  131. #else
  132. param.bEnableSpsPpsIdAddition = 0;
  133. #endif
  134. param.bPrefixNalAddingCtrl = 0;
  135. param.iLoopFilterDisableIdc = !s->loopfilter;
  136. param.iEntropyCodingModeFlag = 0;
  137. param.iMultipleThreadIdc = avctx->thread_count;
  138. if (s->profile && !strcmp(s->profile, "main"))
  139. param.iEntropyCodingModeFlag = 1;
  140. else if (!s->profile && s->cabac)
  141. param.iEntropyCodingModeFlag = 1;
  142. param.sSpatialLayers[0].iVideoWidth = param.iPicWidth;
  143. param.sSpatialLayers[0].iVideoHeight = param.iPicHeight;
  144. param.sSpatialLayers[0].fFrameRate = param.fMaxFrameRate;
  145. param.sSpatialLayers[0].iSpatialBitrate = param.iTargetBitrate;
  146. param.sSpatialLayers[0].iMaxSpatialBitrate = param.iMaxBitrate;
  147. if ((avctx->slices > 1) && (s->max_nal_size)) {
  148. av_log(avctx, AV_LOG_ERROR,
  149. "Invalid combination -slices %d and -max_nal_size %d.\n",
  150. avctx->slices, s->max_nal_size);
  151. return AVERROR(EINVAL);
  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. return AVERROR(EINVAL);
  176. }
  177. }
  178. if ((*s->encoder)->InitializeExt(s->encoder, &param) != cmResultSuccess) {
  179. av_log(avctx, AV_LOG_ERROR, "Initialize failed\n");
  180. return AVERROR_UNKNOWN;
  181. }
  182. if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
  183. SFrameBSInfo fbi = { 0 };
  184. int i, size = 0;
  185. (*s->encoder)->EncodeParameterSets(s->encoder, &fbi);
  186. for (i = 0; i < fbi.sLayerInfo[0].iNalCount; i++)
  187. size += fbi.sLayerInfo[0].pNalLengthInByte[i];
  188. avctx->extradata = av_mallocz(size + AV_INPUT_BUFFER_PADDING_SIZE);
  189. if (!avctx->extradata)
  190. return AVERROR(ENOMEM);
  191. avctx->extradata_size = size;
  192. memcpy(avctx->extradata, fbi.sLayerInfo[0].pBsBuf, size);
  193. }
  194. props = ff_add_cpb_side_data(avctx);
  195. if (!props)
  196. return AVERROR(ENOMEM);
  197. props->max_bitrate = param.iMaxBitrate;
  198. props->avg_bitrate = param.iTargetBitrate;
  199. return 0;
  200. }
  201. static int svc_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
  202. const AVFrame *frame, int *got_packet)
  203. {
  204. SVCContext *s = avctx->priv_data;
  205. SFrameBSInfo fbi = { 0 };
  206. int i, ret;
  207. int encoded;
  208. SSourcePicture sp = { 0 };
  209. int size = 0, layer, first_layer = 0;
  210. int layer_size[MAX_LAYER_NUM_OF_FRAME] = { 0 };
  211. sp.iColorFormat = videoFormatI420;
  212. for (i = 0; i < 3; i++) {
  213. sp.iStride[i] = frame->linesize[i];
  214. sp.pData[i] = frame->data[i];
  215. }
  216. sp.iPicWidth = avctx->width;
  217. sp.iPicHeight = avctx->height;
  218. encoded = (*s->encoder)->EncodeFrame(s->encoder, &sp, &fbi);
  219. if (encoded != cmResultSuccess) {
  220. av_log(avctx, AV_LOG_ERROR, "EncodeFrame failed\n");
  221. return AVERROR_UNKNOWN;
  222. }
  223. if (fbi.eFrameType == videoFrameTypeSkip) {
  224. s->skipped++;
  225. av_log(avctx, AV_LOG_DEBUG, "frame skipped\n");
  226. return 0;
  227. }
  228. first_layer = 0;
  229. // Normal frames are returned with one single layer, while IDR
  230. // frames have two layers, where the first layer contains the SPS/PPS.
  231. // If using global headers, don't include the SPS/PPS in the returned
  232. // packet - thus, only return one layer.
  233. if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER)
  234. first_layer = fbi.iLayerNum - 1;
  235. for (layer = first_layer; layer < fbi.iLayerNum; layer++) {
  236. for (i = 0; i < fbi.sLayerInfo[layer].iNalCount; i++)
  237. layer_size[layer] += fbi.sLayerInfo[layer].pNalLengthInByte[i];
  238. size += layer_size[layer];
  239. }
  240. av_log(avctx, AV_LOG_DEBUG, "%d slices\n", fbi.sLayerInfo[fbi.iLayerNum - 1].iNalCount);
  241. if ((ret = ff_alloc_packet(avpkt, size))) {
  242. av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
  243. return ret;
  244. }
  245. size = 0;
  246. for (layer = first_layer; layer < fbi.iLayerNum; layer++) {
  247. memcpy(avpkt->data + size, fbi.sLayerInfo[layer].pBsBuf, layer_size[layer]);
  248. size += layer_size[layer];
  249. }
  250. avpkt->pts = frame->pts;
  251. if (fbi.eFrameType == videoFrameTypeIDR)
  252. avpkt->flags |= AV_PKT_FLAG_KEY;
  253. *got_packet = 1;
  254. return 0;
  255. }
  256. AVCodec ff_libopenh264_encoder = {
  257. .name = "libopenh264",
  258. .long_name = NULL_IF_CONFIG_SMALL("OpenH264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
  259. .type = AVMEDIA_TYPE_VIDEO,
  260. .id = AV_CODEC_ID_H264,
  261. .priv_data_size = sizeof(SVCContext),
  262. .init = svc_encode_init,
  263. .encode2 = svc_encode_frame,
  264. .close = svc_encode_close,
  265. .capabilities = AV_CODEC_CAP_AUTO_THREADS,
  266. .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
  267. .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P,
  268. AV_PIX_FMT_NONE },
  269. .priv_class = &class,
  270. };