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.

235 lines
8.8KB

  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/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. } SVCContext;
  37. #define OPENH264_VER_AT_LEAST(maj, min) \
  38. ((OPENH264_MAJOR > (maj)) || \
  39. (OPENH264_MAJOR == (maj) && OPENH264_MINOR >= (min)))
  40. #define OFFSET(x) offsetof(SVCContext, x)
  41. #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  42. static const AVOption options[] = {
  43. { "slice_mode", "Slice mode", OFFSET(slice_mode), AV_OPT_TYPE_INT, { .i64 = SM_AUTO_SLICE }, SM_SINGLE_SLICE, SM_RESERVED, VE, "slice_mode" },
  44. { "fixed", "A fixed number of slices", 0, AV_OPT_TYPE_CONST, { .i64 = SM_FIXEDSLCNUM_SLICE }, 0, 0, VE, "slice_mode" },
  45. { "rowmb", "One slice per row of macroblocks", 0, AV_OPT_TYPE_CONST, { .i64 = SM_ROWMB_SLICE }, 0, 0, VE, "slice_mode" },
  46. { "auto", "Automatic number of slices according to number of threads", 0, AV_OPT_TYPE_CONST, { .i64 = SM_AUTO_SLICE }, 0, 0, VE, "slice_mode" },
  47. { "loopfilter", "Enable loop filter", OFFSET(loopfilter), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, VE },
  48. { "profile", "Set profile restrictions", OFFSET(profile), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
  49. { NULL }
  50. };
  51. static const AVClass class = {
  52. "libopenh264enc", av_default_item_name, options, LIBAVUTIL_VERSION_INT
  53. };
  54. static av_cold int svc_encode_close(AVCodecContext *avctx)
  55. {
  56. SVCContext *s = avctx->priv_data;
  57. if (s->encoder)
  58. WelsDestroySVCEncoder(s->encoder);
  59. return 0;
  60. }
  61. static av_cold int svc_encode_init(AVCodecContext *avctx)
  62. {
  63. SVCContext *s = avctx->priv_data;
  64. SEncParamExt param = { 0 };
  65. int err = AVERROR_UNKNOWN;
  66. // Mingw GCC < 4.7 on x86_32 uses an incorrect/buggy ABI for the WelsGetCodecVersion
  67. // function (for functions returning larger structs), thus skip the check in those
  68. // configurations.
  69. #if !defined(_WIN32) || !defined(__GNUC__) || !ARCH_X86_32 || AV_GCC_VERSION_AT_LEAST(4, 7)
  70. OpenH264Version libver = WelsGetCodecVersion();
  71. if (memcmp(&libver, &g_stCodecVersion, sizeof(libver))) {
  72. av_log(avctx, AV_LOG_ERROR, "Incorrect library version loaded\n");
  73. return AVERROR(EINVAL);
  74. }
  75. #endif
  76. if (WelsCreateSVCEncoder(&s->encoder)) {
  77. av_log(avctx, AV_LOG_ERROR, "Unable to create encoder\n");
  78. return AVERROR_UNKNOWN;
  79. }
  80. (*s->encoder)->GetDefaultParams(s->encoder, &param);
  81. param.fMaxFrameRate = avctx->time_base.den / avctx->time_base.num;
  82. param.iPicWidth = avctx->width;
  83. param.iPicHeight = avctx->height;
  84. param.iTargetBitrate = avctx->bit_rate;
  85. param.iMaxBitrate = FFMAX(avctx->rc_max_rate, avctx->bit_rate);
  86. param.iRCMode = RC_QUALITY_MODE;
  87. param.iTemporalLayerNum = 1;
  88. param.iSpatialLayerNum = 1;
  89. param.bEnableDenoise = 0;
  90. param.bEnableBackgroundDetection = 1;
  91. param.bEnableAdaptiveQuant = 1;
  92. param.bEnableFrameSkip = 0;
  93. param.bEnableLongTermReference = 0;
  94. param.iLtrMarkPeriod = 30;
  95. param.uiIntraPeriod = avctx->gop_size;
  96. #if OPENH264_VER_AT_LEAST(1, 4)
  97. param.eSpsPpsIdStrategy = CONSTANT_ID;
  98. #else
  99. param.bEnableSpsPpsIdAddition = 0;
  100. #endif
  101. param.bPrefixNalAddingCtrl = 0;
  102. param.iLoopFilterDisableIdc = !s->loopfilter;
  103. param.iEntropyCodingModeFlag = 0;
  104. param.iMultipleThreadIdc = avctx->thread_count;
  105. if (s->profile && !strcmp(s->profile, "main"))
  106. param.iEntropyCodingModeFlag = 1;
  107. else if (!s->profile && avctx->coder_type == FF_CODER_TYPE_AC)
  108. param.iEntropyCodingModeFlag = 1;
  109. param.sSpatialLayers[0].iVideoWidth = param.iPicWidth;
  110. param.sSpatialLayers[0].iVideoHeight = param.iPicHeight;
  111. param.sSpatialLayers[0].fFrameRate = param.fMaxFrameRate;
  112. param.sSpatialLayers[0].iSpatialBitrate = param.iTargetBitrate;
  113. param.sSpatialLayers[0].iMaxSpatialBitrate = param.iMaxBitrate;
  114. if (avctx->slices > 1)
  115. s->slice_mode = SM_FIXEDSLCNUM_SLICE;
  116. param.sSpatialLayers[0].sSliceCfg.uiSliceMode = s->slice_mode;
  117. param.sSpatialLayers[0].sSliceCfg.sSliceArgument.uiSliceNum = avctx->slices;
  118. if ((*s->encoder)->InitializeExt(s->encoder, &param) != cmResultSuccess) {
  119. av_log(avctx, AV_LOG_ERROR, "Initialize failed\n");
  120. goto fail;
  121. }
  122. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
  123. SFrameBSInfo fbi = { 0 };
  124. int i, size = 0;
  125. (*s->encoder)->EncodeParameterSets(s->encoder, &fbi);
  126. for (i = 0; i < fbi.sLayerInfo[0].iNalCount; i++)
  127. size += fbi.sLayerInfo[0].pNalLengthInByte[i];
  128. avctx->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
  129. if (!avctx->extradata) {
  130. err = AVERROR(ENOMEM);
  131. goto fail;
  132. }
  133. avctx->extradata_size = size;
  134. memcpy(avctx->extradata, fbi.sLayerInfo[0].pBsBuf, size);
  135. }
  136. return 0;
  137. fail:
  138. svc_encode_close(avctx);
  139. return err;
  140. }
  141. static int svc_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
  142. const AVFrame *frame, int *got_packet)
  143. {
  144. SVCContext *s = avctx->priv_data;
  145. SFrameBSInfo fbi = { 0 };
  146. int i, ret;
  147. int encoded;
  148. SSourcePicture sp = { 0 };
  149. int size = 0, layer, first_layer = 0;
  150. int layer_size[MAX_LAYER_NUM_OF_FRAME] = { 0 };
  151. sp.iColorFormat = videoFormatI420;
  152. for (i = 0; i < 3; i++) {
  153. sp.iStride[i] = frame->linesize[i];
  154. sp.pData[i] = frame->data[i];
  155. }
  156. sp.iPicWidth = avctx->width;
  157. sp.iPicHeight = avctx->height;
  158. encoded = (*s->encoder)->EncodeFrame(s->encoder, &sp, &fbi);
  159. if (encoded != cmResultSuccess) {
  160. av_log(avctx, AV_LOG_ERROR, "EncodeFrame failed\n");
  161. return AVERROR_UNKNOWN;
  162. }
  163. if (fbi.eFrameType == videoFrameTypeSkip) {
  164. av_log(avctx, AV_LOG_DEBUG, "frame skipped\n");
  165. return 0;
  166. }
  167. first_layer = 0;
  168. // Normal frames are returned with one single layer, while IDR
  169. // frames have two layers, where the first layer contains the SPS/PPS.
  170. // If using global headers, don't include the SPS/PPS in the returned
  171. // packet - thus, only return one layer.
  172. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER)
  173. first_layer = fbi.iLayerNum - 1;
  174. for (layer = first_layer; layer < fbi.iLayerNum; layer++) {
  175. for (i = 0; i < fbi.sLayerInfo[layer].iNalCount; i++)
  176. layer_size[layer] += fbi.sLayerInfo[layer].pNalLengthInByte[i];
  177. size += layer_size[layer];
  178. }
  179. av_log(avctx, AV_LOG_DEBUG, "%d slices\n", fbi.sLayerInfo[fbi.iLayerNum - 1].iNalCount);
  180. if ((ret = ff_alloc_packet(avpkt, size))) {
  181. av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
  182. return ret;
  183. }
  184. size = 0;
  185. for (layer = first_layer; layer < fbi.iLayerNum; layer++) {
  186. memcpy(avpkt->data + size, fbi.sLayerInfo[layer].pBsBuf, layer_size[layer]);
  187. size += layer_size[layer];
  188. }
  189. avpkt->pts = frame->pts;
  190. if (fbi.eFrameType == videoFrameTypeIDR)
  191. avpkt->flags |= AV_PKT_FLAG_KEY;
  192. *got_packet = 1;
  193. return 0;
  194. }
  195. AVCodec ff_libopenh264_encoder = {
  196. .name = "libopenh264",
  197. .long_name = NULL_IF_CONFIG_SMALL("OpenH264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
  198. .type = AVMEDIA_TYPE_VIDEO,
  199. .id = AV_CODEC_ID_H264,
  200. .priv_data_size = sizeof(SVCContext),
  201. .init = svc_encode_init,
  202. .encode2 = svc_encode_frame,
  203. .close = svc_encode_close,
  204. .capabilities = CODEC_CAP_AUTO_THREADS,
  205. .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P,
  206. AV_PIX_FMT_NONE },
  207. .priv_class = &class,
  208. };