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