Skip to content

Commit a3e2130

Browse files
author
secile develop
committed
support openh264 v2.1.0 and later. (issue secile#19)
1 parent b024291 commit a3e2130

File tree

7 files changed

+125
-90
lines changed

7 files changed

+125
-90
lines changed

OpenH264Lib/Decoder.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,27 +26,27 @@ namespace OpenH264Lib {
2626

2727
Bitmap^ Decoder::Decode(unsigned char *frame, int length)
2828
{
29-
unsigned char* buffer[3];
29+
unsigned char* buffer[3]; // obsoleted openh264 version 2.1.0 and later.
3030

3131
SBufferInfo bufInfo; memset(&bufInfo, 0x00, sizeof(bufInfo));
3232
int rc = decoder->DecodeFrame2(frame, length, buffer, &bufInfo);
3333
if (rc != 0) return nullptr;
3434
if (bufInfo.iBufferStatus != 1) return nullptr;
3535

3636
// Y Plane
37-
byte* y_plane = buffer[0];
37+
byte* y_plane = bufInfo.pDst[0];
3838
int y_w = bufInfo.UsrData.sSystemBuffer.iWidth;
3939
int y_h = bufInfo.UsrData.sSystemBuffer.iHeight;
4040
int y_s = bufInfo.UsrData.sSystemBuffer.iStride[0];
4141

4242
// U Plane
43-
byte* u_plane = buffer[1];
43+
byte* u_plane = bufInfo.pDst[1];
4444
int u_w = bufInfo.UsrData.sSystemBuffer.iWidth / 2;
4545
int u_h = bufInfo.UsrData.sSystemBuffer.iHeight / 2;
4646
int u_s = bufInfo.UsrData.sSystemBuffer.iStride[1];
4747

4848
// V Plane
49-
byte* v_plane = buffer[2];
49+
byte* v_plane = bufInfo.pDst[2];
5050
int v_w = bufInfo.UsrData.sSystemBuffer.iWidth / 2;
5151
int v_h = bufInfo.UsrData.sSystemBuffer.iHeight / 2;
5252
int v_s = bufInfo.UsrData.sSystemBuffer.iStride[1];

OpenH264Lib/OpenH264Header/codec_api.h

+55-39
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ typedef unsigned char bool;
6161
* * This page is for openh264 codec API usage.
6262
* * For how to use the encoder,please refer to page UsageExampleForEncoder
6363
* * For how to use the decoder,please refer to page UsageExampleForDecoder
64-
* * For more detail about ISVEncoder,please refer to page ISVCEnoder
64+
* * For more detail about ISVEncoder,please refer to page ISVCEncoder
6565
* * For more detail about ISVDecoder,please refer to page ISVCDecoder
6666
*/
6767

@@ -94,7 +94,7 @@ typedef unsigned char bool;
9494
*
9595
* Step 2:decoder creation
9696
* @code
97-
* CreateDecoder(pSvcDecoder);
97+
* WelsCreateDecoder(&pSvcDecoder);
9898
* @endcode
9999
*
100100
* Step 3:declare required parameter, used to differentiate Decoding only and Parsing only
@@ -107,44 +107,44 @@ typedef unsigned char bool;
107107
*
108108
* Step 4:initialize the parameter and decoder context, allocate memory
109109
* @code
110-
* Initialize(&sDecParam);
110+
* pSvcDecoder->Initialize(&sDecParam);
111111
* @endcode
112112
*
113113
* Step 5:do actual decoding process in slice level;
114114
* this can be done in a loop until data ends
115115
* @code
116116
* //for Decoding only
117-
* iRet = DecodeFrameNoDelay(pBuf, iSize, pData, &sDstBufInfo);
117+
* iRet = pSvcDecoder->DecodeFrameNoDelay(pBuf, iSize, pData, &sDstBufInfo);
118118
* //or
119-
* iRet = DecodeFrame2(pBuf, iSize, pData, &sDstBufInfo);
119+
* iRet = pSvcDecoder->DecodeFrame2(pBuf, iSize, pData, &sDstBufInfo);
120120
* //for Parsing only
121-
* iRet = DecodeParser(pBuf, iSize, &sDstParseInfo);
121+
* iRet = pSvcDecoder->DecodeParser(pBuf, iSize, &sDstParseInfo);
122122
* //decode failed
123123
* If (iRet != 0){
124-
* RequestIDR or something like that.
124+
* //error handling (RequestIDR or something like that)
125125
* }
126126
* //for Decoding only, pData can be used for render.
127127
* if (sDstBufInfo.iBufferStatus==1){
128-
* output pData[0], pData[1], pData[2];
128+
* //output handling (pData[0], pData[1], pData[2])
129129
* }
130130
* //for Parsing only, sDstParseInfo can be used for, e.g., HW decoding
131131
* if (sDstBufInfo.iNalNum > 0){
132-
* Hardware decoding sDstParseInfo;
132+
* //Hardware decoding sDstParseInfo;
133133
* }
134134
* //no-delay decoding can be realized by directly calling DecodeFrameNoDelay(), which is the recommended usage.
135135
* //no-delay decoding can also be realized by directly calling DecodeFrame2() again with NULL input, as in the following. In this case, decoder would immediately reconstruct the input data. This can also be used similarly for Parsing only. Consequent decoding error and output indication should also be considered as above.
136-
* iRet = DecodeFrame2(NULL, 0, pData, &sDstBufInfo);
137-
* judge iRet, sDstBufInfo.iBufferStatus ...
136+
* iRet = pSvcDecoder->DecodeFrame2(NULL, 0, pData, &sDstBufInfo);
137+
* //judge iRet, sDstBufInfo.iBufferStatus ...
138138
* @endcode
139139
*
140140
* Step 6:uninitialize the decoder and memory free
141141
* @code
142-
* Uninitialize();
142+
* pSvcDecoder->Uninitialize();
143143
* @endcode
144144
*
145145
* Step 7:destroy the decoder
146146
* @code
147-
* DestroyDecoder();
147+
* DestroyDecoder(pSvcDecoder);
148148
* @endcode
149149
*
150150
*/
@@ -157,16 +157,17 @@ typedef unsigned char bool;
157157
*
158158
* Step1:setup encoder
159159
* @code
160+
* ISVCEncoder* encoder_;
160161
* int rv = WelsCreateSVCEncoder (&encoder_);
161-
* ASSERT_EQ (0, rv);
162-
* ASSERT_TRUE (encoder_ != NULL);
162+
* assert (rv == 0);
163+
* assert (encoder_ != NULL);
163164
* @endcode
164165
*
165166
* Step2:initilize with basic parameter
166167
* @code
167168
* SEncParamBase param;
168169
* memset (&param, 0, sizeof (SEncParamBase));
169-
* param.iUsageType = usageType;
170+
* param.iUsageType = usageType; //from EUsageType enum
170171
* param.fMaxFrameRate = frameRate;
171172
* param.iPicWidth = width;
172173
* param.iPicHeight = height;
@@ -186,7 +187,7 @@ typedef unsigned char bool;
186187
* int frameSize = width * height * 3 / 2;
187188
* BufferedData buf;
188189
* buf.SetLength (frameSize);
189-
* ASSERT_TRUE (buf.Length() == (size_t)frameSize);
190+
* assert (buf.Length() == (size_t)frameSize);
190191
* SFrameBSInfo info;
191192
* memset (&info, 0, sizeof (SFrameBSInfo));
192193
* SSourcePicture pic;
@@ -202,9 +203,9 @@ typedef unsigned char bool;
202203
* for(int num = 0;num<total_num;num++) {
203204
* //prepare input data
204205
* rv = encoder_->EncodeFrame (&pic, &info);
205-
* ASSERT_TRUE (rv == cmResultSuccess);
206-
* if (info.eFrameType != videoFrameTypeSkip && cbk != NULL) {
207-
* //output bitstream
206+
* assert (rv == cmResultSuccess);
207+
* if (info.eFrameType != videoFrameTypeSkip) {
208+
* //output bitstream handling
208209
* }
209210
* }
210211
* @endcode
@@ -229,7 +230,7 @@ typedef unsigned char bool;
229230
* Step 2:initialize with extension parameter
230231
* @code
231232
* SEncParamExt param;
232-
* encoder->GetDefaultParams (&param);
233+
* encoder_->GetDefaultParams (&param);
233234
* param.iUsageType = usageType;
234235
* param.fMaxFrameRate = frameRate;
235236
* param.iPicWidth = width;
@@ -319,7 +320,7 @@ class ISVCEncoder {
319320
* @param bIDR true: force encoder to encode frame as IDR frame;false, return 1 and nothing to do
320321
* @return 0 - success; otherwise - failed;
321322
*/
322-
virtual int EXTAPI ForceIntraFrame (bool bIDR,int iLayerId = -1) = 0;
323+
virtual int EXTAPI ForceIntraFrame (bool bIDR, int iLayerId = -1) = 0;
323324

324325
/**
325326
* @brief Set option for encoder, detail option type, please refer to enumurate ENCODER_OPTION.
@@ -329,7 +330,7 @@ class ISVCEncoder {
329330
virtual int EXTAPI SetOption (ENCODER_OPTION eOptionId, void* pOption) = 0;
330331

331332
/**
332-
* @brief Set option for encoder, detail option type, please refer to enumurate ENCODER_OPTION.
333+
* @brief Get option for encoder, detail option type, please refer to enumurate ENCODER_OPTION.
333334
* @param pOption option for encoder such as InDataFormat, IDRInterval, SVC Encode Param, Frame Rate, Bitrate,...
334335
* @return CM_RETURN: 0 - success; otherwise - failed;
335336
*/
@@ -372,18 +373,18 @@ class ISVCDecoder {
372373
int& iWidth,
373374
int& iHeight) = 0;
374375

375-
/**
376-
* @brief For slice level DecodeFrameNoDelay() (4 parameters input),
377-
* whatever the function return value is, the output data
378-
* of I420 format will only be available when pDstInfo->iBufferStatus == 1,.
379-
* This function will parse and reconstruct the input frame immediately if it is complete
380-
* It is recommended as the main decoding function for H.264/AVC format input
381-
* @param pSrc the h264 stream to be decoded
382-
* @param iSrcLen the length of h264 stream
383-
* @param ppDst buffer pointer of decoded data (YUV)
384-
* @param pDstInfo information provided to API(width, height, etc.)
385-
* @return 0 - success; otherwise -failed;
386-
*/
376+
/**
377+
* @brief For slice level DecodeFrameNoDelay() (4 parameters input),
378+
* whatever the function return value is, the output data
379+
* of I420 format will only be available when pDstInfo->iBufferStatus == 1,.
380+
* This function will parse and reconstruct the input frame immediately if it is complete
381+
* It is recommended as the main decoding function for H.264/AVC format input
382+
* @param pSrc the h264 stream to be decoded
383+
* @param iSrcLen the length of h264 stream
384+
* @param ppDst buffer pointer of decoded data (YUV)
385+
* @param pDstInfo information provided to API(width, height, etc.)
386+
* @return 0 - success; otherwise -failed;
387+
*/
387388
virtual DECODING_STATE EXTAPI DecodeFrameNoDelay (const unsigned char* pSrc,
388389
const int iSrcLen,
389390
unsigned char** ppDst,
@@ -406,6 +407,18 @@ class ISVCDecoder {
406407
unsigned char** ppDst,
407408
SBufferInfo* pDstInfo) = 0;
408409

410+
411+
/**
412+
* @brief This function gets a decoded ready frame remaining in buffers after the last frame has been decoded.
413+
* Use GetOption with option DECODER_OPTION_NUM_OF_FRAMES_REMAINING_IN_BUFFER to get the number of frames remaining in buffers.
414+
* Note that it is only applicable for profile_idc != 66
415+
* @param ppDst buffer pointer of decoded data (YUV)
416+
* @param pDstInfo information provided to API(width, height, etc.)
417+
* @return 0 - success; otherwise -failed;
418+
*/
419+
virtual DECODING_STATE EXTAPI FlushFrame (unsigned char** ppDst,
420+
SBufferInfo* pDstInfo) = 0;
421+
409422
/**
410423
* @brief This function parse input bitstream only, and rewrite possible SVC syntax to AVC syntax
411424
* @param pSrc the h264 stream to be decoded
@@ -493,15 +506,18 @@ DECODING_STATE (*DecodeFrame) (ISVCDecoder*, const unsigned char* pSrc,
493506
int* iHeight);
494507

495508
DECODING_STATE (*DecodeFrameNoDelay) (ISVCDecoder*, const unsigned char* pSrc,
496-
const int iSrcLen,
497-
unsigned char** ppDst,
498-
SBufferInfo* pDstInfo);
509+
const int iSrcLen,
510+
unsigned char** ppDst,
511+
SBufferInfo* pDstInfo);
499512

500513
DECODING_STATE (*DecodeFrame2) (ISVCDecoder*, const unsigned char* pSrc,
501514
const int iSrcLen,
502515
unsigned char** ppDst,
503516
SBufferInfo* pDstInfo);
504517

518+
DECODING_STATE (*FlushFrame) (ISVCDecoder*, unsigned char** ppDst,
519+
SBufferInfo* pDstInfo);
520+
505521
DECODING_STATE (*DecodeParser) (ISVCDecoder*, const unsigned char* pSrc,
506522
const int iSrcLen,
507523
SParserBsInfo* pDstInfo);
@@ -567,7 +583,7 @@ OpenH264Version WelsGetCodecVersion (void);
567583
/** @brief Get codec version
568584
* @param pVersion struct to fill in with the version
569585
*/
570-
void WelsGetCodecVersionEx (OpenH264Version *pVersion);
586+
void WelsGetCodecVersionEx (OpenH264Version* pVersion);
571587

572588
#ifdef __cplusplus
573589
}

0 commit comments

Comments
 (0)