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.

316 lines
13KB

  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/intreadwrite.h"
  27. #include "libavutil/mathematics.h"
  28. #include "avcodec.h"
  29. #include "internal.h"
  30. typedef struct SVCContext {
  31. const AVClass *av_class;
  32. ISVCEncoder *encoder;
  33. int slice_mode;
  34. int loopfilter;
  35. char *profile;
  36. int max_nal_size;
  37. int skip_frames;
  38. int skipped;
  39. } SVCContext;
  40. #define OPENH264_VER_AT_LEAST(maj, min) \
  41. ((OPENH264_MAJOR > (maj)) || \
  42. (OPENH264_MAJOR == (maj) && OPENH264_MINOR >= (min)))
  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", "set 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_BOOL, { .i64 = 0 }, 0, 1, VE },
  55. { NULL }
  56. };
  57. static const AVClass class = {
  58. "libopenh264enc", av_default_item_name, options, LIBAVUTIL_VERSION_INT
  59. };
  60. // Convert libopenh264 log level to equivalent ffmpeg log level.
  61. static int libopenh264_to_ffmpeg_log_level(int libopenh264_log_level)
  62. {
  63. if (libopenh264_log_level >= WELS_LOG_DETAIL) return AV_LOG_TRACE;
  64. else if (libopenh264_log_level >= WELS_LOG_DEBUG) return AV_LOG_DEBUG;
  65. else if (libopenh264_log_level >= WELS_LOG_INFO) return AV_LOG_VERBOSE;
  66. else if (libopenh264_log_level >= WELS_LOG_WARNING) return AV_LOG_WARNING;
  67. else if (libopenh264_log_level >= WELS_LOG_ERROR) return AV_LOG_ERROR;
  68. else return AV_LOG_QUIET;
  69. }
  70. // This function will be provided to the libopenh264 library. The function will be called
  71. // when libopenh264 wants to log a message (error, warning, info, etc.). The signature for
  72. // this function (defined in .../codec/api/svc/codec_api.h) is:
  73. //
  74. // typedef void (*WelsTraceCallback) (void* ctx, int level, const char* string);
  75. static void libopenh264_trace_callback(void *ctx, int level, char const *msg)
  76. {
  77. // The message will be logged only if the requested EQUIVALENT ffmpeg log level is
  78. // less than or equal to the current ffmpeg log level.
  79. int equiv_ffmpeg_log_level = libopenh264_to_ffmpeg_log_level(level);
  80. av_log(ctx, equiv_ffmpeg_log_level, "%s\n", msg);
  81. }
  82. static av_cold int svc_encode_close(AVCodecContext *avctx)
  83. {
  84. SVCContext *s = avctx->priv_data;
  85. if (s->encoder)
  86. WelsDestroySVCEncoder(s->encoder);
  87. if (s->skipped > 0)
  88. av_log(avctx, AV_LOG_WARNING, "%d frames skipped\n", s->skipped);
  89. return 0;
  90. }
  91. static av_cold int svc_encode_init(AVCodecContext *avctx)
  92. {
  93. SVCContext *s = avctx->priv_data;
  94. SEncParamExt param = { 0 };
  95. int err = AVERROR_UNKNOWN;
  96. int log_level;
  97. WelsTraceCallback callback_function;
  98. AVCPBProperties *props;
  99. // Mingw GCC < 4.7 on x86_32 uses an incorrect/buggy ABI for the WelsGetCodecVersion
  100. // function (for functions returning larger structs), thus skip the check in those
  101. // configurations.
  102. #if !defined(_WIN32) || !defined(__GNUC__) || !ARCH_X86_32 || AV_GCC_VERSION_AT_LEAST(4, 7)
  103. OpenH264Version libver = WelsGetCodecVersion();
  104. if (memcmp(&libver, &g_stCodecVersion, sizeof(libver))) {
  105. av_log(avctx, AV_LOG_ERROR, "Incorrect library version loaded\n");
  106. return AVERROR(EINVAL);
  107. }
  108. #endif
  109. if (WelsCreateSVCEncoder(&s->encoder)) {
  110. av_log(avctx, AV_LOG_ERROR, "Unable to create encoder\n");
  111. return AVERROR_UNKNOWN;
  112. }
  113. // Pass all libopenh264 messages to our callback, to allow ourselves to filter them.
  114. log_level = WELS_LOG_DETAIL;
  115. (*s->encoder)->SetOption(s->encoder, ENCODER_OPTION_TRACE_LEVEL, &log_level);
  116. // Set the logging callback function to one that uses av_log() (see implementation above).
  117. callback_function = (WelsTraceCallback) libopenh264_trace_callback;
  118. (*s->encoder)->SetOption(s->encoder, ENCODER_OPTION_TRACE_CALLBACK, (void *)&callback_function);
  119. // Set the AVCodecContext as the libopenh264 callback context so that it can be passed to av_log().
  120. (*s->encoder)->SetOption(s->encoder, ENCODER_OPTION_TRACE_CALLBACK_CONTEXT, (void *)&avctx);
  121. (*s->encoder)->GetDefaultParams(s->encoder, &param);
  122. param.fMaxFrameRate = 1/av_q2d(avctx->time_base);
  123. param.iPicWidth = avctx->width;
  124. param.iPicHeight = avctx->height;
  125. param.iTargetBitrate = avctx->bit_rate;
  126. param.iMaxBitrate = FFMAX(avctx->rc_max_rate, avctx->bit_rate);
  127. param.iRCMode = RC_QUALITY_MODE;
  128. param.iTemporalLayerNum = 1;
  129. param.iSpatialLayerNum = 1;
  130. param.bEnableDenoise = 0;
  131. param.bEnableBackgroundDetection = 1;
  132. param.bEnableAdaptiveQuant = 1;
  133. param.bEnableFrameSkip = s->skip_frames;
  134. param.bEnableLongTermReference = 0;
  135. param.iLtrMarkPeriod = 30;
  136. param.uiIntraPeriod = avctx->gop_size;
  137. #if OPENH264_VER_AT_LEAST(1, 4)
  138. param.eSpsPpsIdStrategy = CONSTANT_ID;
  139. #else
  140. param.bEnableSpsPpsIdAddition = 0;
  141. #endif
  142. param.bPrefixNalAddingCtrl = 0;
  143. param.iLoopFilterDisableIdc = !s->loopfilter;
  144. param.iEntropyCodingModeFlag = 0;
  145. param.iMultipleThreadIdc = avctx->thread_count;
  146. if (s->profile && !strcmp(s->profile, "main"))
  147. param.iEntropyCodingModeFlag = 1;
  148. else if (!s->profile && avctx->coder_type == FF_CODER_TYPE_AC)
  149. param.iEntropyCodingModeFlag = 1;
  150. param.sSpatialLayers[0].iVideoWidth = param.iPicWidth;
  151. param.sSpatialLayers[0].iVideoHeight = param.iPicHeight;
  152. param.sSpatialLayers[0].fFrameRate = param.fMaxFrameRate;
  153. param.sSpatialLayers[0].iSpatialBitrate = param.iTargetBitrate;
  154. param.sSpatialLayers[0].iMaxSpatialBitrate = param.iMaxBitrate;
  155. if ((avctx->slices > 1) && (s->max_nal_size)){
  156. av_log(avctx,AV_LOG_ERROR,"Invalid combination -slices %d and -max_nal_size %d.\n",avctx->slices,s->max_nal_size);
  157. goto fail;
  158. }
  159. if (avctx->slices > 1)
  160. s->slice_mode = SM_FIXEDSLCNUM_SLICE;
  161. if (s->max_nal_size)
  162. s->slice_mode = SM_DYN_SLICE;
  163. param.sSpatialLayers[0].sSliceCfg.uiSliceMode = s->slice_mode;
  164. param.sSpatialLayers[0].sSliceCfg.sSliceArgument.uiSliceNum = avctx->slices;
  165. if (s->slice_mode == SM_DYN_SLICE) {
  166. if (s->max_nal_size){
  167. param.uiMaxNalSize = s->max_nal_size;
  168. param.sSpatialLayers[0].sSliceCfg.sSliceArgument.uiSliceSizeConstraint = s->max_nal_size;
  169. } else {
  170. if (avctx->rtp_payload_size) {
  171. av_log(avctx,AV_LOG_DEBUG,"Using RTP Payload size for uiMaxNalSize");
  172. param.uiMaxNalSize = avctx->rtp_payload_size;
  173. param.sSpatialLayers[0].sSliceCfg.sSliceArgument.uiSliceSizeConstraint = avctx->rtp_payload_size;
  174. } else {
  175. av_log(avctx,AV_LOG_ERROR,"Invalid -max_nal_size, specify a valid max_nal_size to use -slice_mode dyn\n");
  176. goto fail;
  177. }
  178. }
  179. }
  180. if ((*s->encoder)->InitializeExt(s->encoder, &param) != cmResultSuccess) {
  181. av_log(avctx, AV_LOG_ERROR, "Initialize failed\n");
  182. goto fail;
  183. }
  184. if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
  185. SFrameBSInfo fbi = { 0 };
  186. int i, size = 0;
  187. (*s->encoder)->EncodeParameterSets(s->encoder, &fbi);
  188. for (i = 0; i < fbi.sLayerInfo[0].iNalCount; i++)
  189. size += fbi.sLayerInfo[0].pNalLengthInByte[i];
  190. avctx->extradata = av_mallocz(size + AV_INPUT_BUFFER_PADDING_SIZE);
  191. if (!avctx->extradata) {
  192. err = AVERROR(ENOMEM);
  193. goto fail;
  194. }
  195. avctx->extradata_size = size;
  196. memcpy(avctx->extradata, fbi.sLayerInfo[0].pBsBuf, size);
  197. }
  198. props = ff_add_cpb_side_data(avctx);
  199. if (!props) {
  200. err = AVERROR(ENOMEM);
  201. goto fail;
  202. }
  203. props->max_bitrate = param.iMaxBitrate;
  204. props->avg_bitrate = param.iTargetBitrate;
  205. return 0;
  206. fail:
  207. svc_encode_close(avctx);
  208. return err;
  209. }
  210. static int svc_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
  211. const AVFrame *frame, int *got_packet)
  212. {
  213. SVCContext *s = avctx->priv_data;
  214. SFrameBSInfo fbi = { 0 };
  215. int i, ret;
  216. int encoded;
  217. SSourcePicture sp = { 0 };
  218. int size = 0, layer, first_layer = 0;
  219. int layer_size[MAX_LAYER_NUM_OF_FRAME] = { 0 };
  220. sp.iColorFormat = videoFormatI420;
  221. for (i = 0; i < 3; i++) {
  222. sp.iStride[i] = frame->linesize[i];
  223. sp.pData[i] = frame->data[i];
  224. }
  225. sp.iPicWidth = avctx->width;
  226. sp.iPicHeight = avctx->height;
  227. encoded = (*s->encoder)->EncodeFrame(s->encoder, &sp, &fbi);
  228. if (encoded != cmResultSuccess) {
  229. av_log(avctx, AV_LOG_ERROR, "EncodeFrame failed\n");
  230. return AVERROR_UNKNOWN;
  231. }
  232. if (fbi.eFrameType == videoFrameTypeSkip) {
  233. s->skipped++;
  234. av_log(avctx, AV_LOG_DEBUG, "frame skipped\n");
  235. return 0;
  236. }
  237. first_layer = 0;
  238. // Normal frames are returned with one single layer, while IDR
  239. // frames have two layers, where the first layer contains the SPS/PPS.
  240. // If using global headers, don't include the SPS/PPS in the returned
  241. // packet - thus, only return one layer.
  242. if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER)
  243. first_layer = fbi.iLayerNum - 1;
  244. for (layer = first_layer; layer < fbi.iLayerNum; layer++) {
  245. for (i = 0; i < fbi.sLayerInfo[layer].iNalCount; i++)
  246. layer_size[layer] += fbi.sLayerInfo[layer].pNalLengthInByte[i];
  247. size += layer_size[layer];
  248. }
  249. av_log(avctx, AV_LOG_DEBUG, "%d slices\n", fbi.sLayerInfo[fbi.iLayerNum - 1].iNalCount);
  250. if ((ret = ff_alloc_packet2(avctx, avpkt, size, size))) {
  251. av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
  252. return ret;
  253. }
  254. size = 0;
  255. for (layer = first_layer; layer < fbi.iLayerNum; layer++) {
  256. memcpy(avpkt->data + size, fbi.sLayerInfo[layer].pBsBuf, layer_size[layer]);
  257. size += layer_size[layer];
  258. }
  259. avpkt->pts = frame->pts;
  260. if (fbi.eFrameType == videoFrameTypeIDR)
  261. avpkt->flags |= AV_PKT_FLAG_KEY;
  262. *got_packet = 1;
  263. return 0;
  264. }
  265. AVCodec ff_libopenh264_encoder = {
  266. .name = "libopenh264",
  267. .long_name = NULL_IF_CONFIG_SMALL("OpenH264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
  268. .type = AVMEDIA_TYPE_VIDEO,
  269. .id = AV_CODEC_ID_H264,
  270. .priv_data_size = sizeof(SVCContext),
  271. .init = svc_encode_init,
  272. .encode2 = svc_encode_frame,
  273. .close = svc_encode_close,
  274. .capabilities = AV_CODEC_CAP_AUTO_THREADS,
  275. .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P,
  276. AV_PIX_FMT_NONE },
  277. .priv_class = &class,
  278. };