Multiple-segment Encoding¶
Multiple-segment encoding is useful in video editing applications during production, for example when the encoder encodes multiple video clips according to their time line. In general, one can define multiple-segment encoding as dividing an input sequence of frames into segments and encoding them in different encoding sessions with the same or different parameter sets. For example:
Segment Already Encoded |
Segment in Encoding |
Segment to be Encoded |
---|---|---|
0s |
200s |
500s |
Note
Different encoders can also be used.
The application must be able to:
Extract encoding parameters from the bitstream of previously encoded segment.
Import these encoding parameters to configure the encoder.
Encoding can then continue on the current segment using either the same or similar encoding parameters.
Extracting the header that contains the encoding parameter set from the encoded
bitstream is usually the task of a format splitter (de-multiplexer). Alternatively,
the MFXVideoDECODE_DecodeHeader()
function can export
the raw header if the application attaches the mfxExtCodingOptionSPSPPS
structure as part of the parameters.
The encoder can use the mfxExtCodingOptionSPSPPS
structure to import
the encoding parameters during MFXVideoENCODE_Init()
. The encoding
parameters are in the encoded bitstream format. Upon a successful import of the
header parameters, the encoder will generate bitstreams with a compatible (not
necessarily bit-exact) header. The
Header Import Functions table shows all
functions that can import a header and their error codes if there are
unsupported parameters in the header or the encoder is unable to achieve
compatibility with the imported header.
Function Name |
Error Code if Import Fails |
---|---|
The encoder must encode frames to a GOP sequence starting with an IDR frame for H.264 (or I frame for MPEG-2) to ensure that the current segment encoding does not refer to any frames in the previous segment. This ensures that the encoded segment is self-contained, allowing the application to insert the segment anywhere in the final bitstream. After encoding, each encoded segment is HRD compliant. Concatenated segments may not be HRD compliant.
The following example shows the encoder initialization procedure that imports H.264 sequence and picture parameter sets:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | mfxStatus init_encoder() {
mfxExtCodingOptionSPSPPS option, *option_array;
/* configure mfxExtCodingOptionSPSPPS */
memset(&option,0,sizeof(option));
option.Header.BufferId=MFX_EXTBUFF_CODING_OPTION_SPSPPS;
option.Header.BufferSz=sizeof(option);
option.SPSBuffer=sps_buffer;
option.SPSBufSize=sps_buffer_length;
option.PPSBuffer=pps_buffer;
option.PPSBufSize=pps_buffer_length;
/* configure mfxVideoParam */
mfxVideoParam param;
//...
param.NumExtParam=1;
option_array=&option;
param.ExtParam=(mfxExtBuffer**)&option_array;
/* encoder initialization */
mfxStatus status;
status=MFXVideoENCODE_Init(session, ¶m);
if (status==MFX_ERR_INCOMPATIBLE_VIDEO_PARAM) {
printf("Initialization failed.\n");
} else {
printf("Initialized.\n");
}
return status;
}
|