@@ -61,7 +61,7 @@ typedef unsigned char bool;
61
61
* * This page is for openh264 codec API usage.
62
62
* * For how to use the encoder,please refer to page UsageExampleForEncoder
63
63
* * 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
65
65
* * For more detail about ISVDecoder,please refer to page ISVCDecoder
66
66
*/
67
67
@@ -94,7 +94,7 @@ typedef unsigned char bool;
94
94
*
95
95
* Step 2:decoder creation
96
96
* @code
97
- * CreateDecoder( pSvcDecoder);
97
+ * WelsCreateDecoder(& pSvcDecoder);
98
98
* @endcode
99
99
*
100
100
* Step 3:declare required parameter, used to differentiate Decoding only and Parsing only
@@ -107,44 +107,44 @@ typedef unsigned char bool;
107
107
*
108
108
* Step 4:initialize the parameter and decoder context, allocate memory
109
109
* @code
110
- * Initialize(&sDecParam);
110
+ * pSvcDecoder-> Initialize(&sDecParam);
111
111
* @endcode
112
112
*
113
113
* Step 5:do actual decoding process in slice level;
114
114
* this can be done in a loop until data ends
115
115
* @code
116
116
* //for Decoding only
117
- * iRet = DecodeFrameNoDelay(pBuf, iSize, pData, &sDstBufInfo);
117
+ * iRet = pSvcDecoder-> DecodeFrameNoDelay(pBuf, iSize, pData, &sDstBufInfo);
118
118
* //or
119
- * iRet = DecodeFrame2(pBuf, iSize, pData, &sDstBufInfo);
119
+ * iRet = pSvcDecoder-> DecodeFrame2(pBuf, iSize, pData, &sDstBufInfo);
120
120
* //for Parsing only
121
- * iRet = DecodeParser(pBuf, iSize, &sDstParseInfo);
121
+ * iRet = pSvcDecoder-> DecodeParser(pBuf, iSize, &sDstParseInfo);
122
122
* //decode failed
123
123
* If (iRet != 0){
124
- * RequestIDR or something like that.
124
+ * //error handling ( RequestIDR or something like that)
125
125
* }
126
126
* //for Decoding only, pData can be used for render.
127
127
* if (sDstBufInfo.iBufferStatus==1){
128
- * output pData[0], pData[1], pData[2];
128
+ * // output handling ( pData[0], pData[1], pData[2])
129
129
* }
130
130
* //for Parsing only, sDstParseInfo can be used for, e.g., HW decoding
131
131
* if (sDstBufInfo.iNalNum > 0){
132
- * Hardware decoding sDstParseInfo;
132
+ * // Hardware decoding sDstParseInfo;
133
133
* }
134
134
* //no-delay decoding can be realized by directly calling DecodeFrameNoDelay(), which is the recommended usage.
135
135
* //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 ...
138
138
* @endcode
139
139
*
140
140
* Step 6:uninitialize the decoder and memory free
141
141
* @code
142
- * Uninitialize();
142
+ * pSvcDecoder-> Uninitialize();
143
143
* @endcode
144
144
*
145
145
* Step 7:destroy the decoder
146
146
* @code
147
- * DestroyDecoder();
147
+ * DestroyDecoder(pSvcDecoder );
148
148
* @endcode
149
149
*
150
150
*/
@@ -157,16 +157,17 @@ typedef unsigned char bool;
157
157
*
158
158
* Step1:setup encoder
159
159
* @code
160
+ * ISVCEncoder* encoder_;
160
161
* int rv = WelsCreateSVCEncoder (&encoder_);
161
- * ASSERT_EQ (0, rv );
162
- * ASSERT_TRUE (encoder_ != NULL);
162
+ * assert (rv == 0 );
163
+ * assert (encoder_ != NULL);
163
164
* @endcode
164
165
*
165
166
* Step2:initilize with basic parameter
166
167
* @code
167
168
* SEncParamBase param;
168
169
* memset (¶m, 0, sizeof (SEncParamBase));
169
- * param.iUsageType = usageType;
170
+ * param.iUsageType = usageType; //from EUsageType enum
170
171
* param.fMaxFrameRate = frameRate;
171
172
* param.iPicWidth = width;
172
173
* param.iPicHeight = height;
@@ -186,7 +187,7 @@ typedef unsigned char bool;
186
187
* int frameSize = width * height * 3 / 2;
187
188
* BufferedData buf;
188
189
* buf.SetLength (frameSize);
189
- * ASSERT_TRUE (buf.Length() == (size_t)frameSize);
190
+ * assert (buf.Length() == (size_t)frameSize);
190
191
* SFrameBSInfo info;
191
192
* memset (&info, 0, sizeof (SFrameBSInfo));
192
193
* SSourcePicture pic;
@@ -202,9 +203,9 @@ typedef unsigned char bool;
202
203
* for(int num = 0;num<total_num;num++) {
203
204
* //prepare input data
204
205
* 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
208
209
* }
209
210
* }
210
211
* @endcode
@@ -229,7 +230,7 @@ typedef unsigned char bool;
229
230
* Step 2:initialize with extension parameter
230
231
* @code
231
232
* SEncParamExt param;
232
- * encoder ->GetDefaultParams (¶m);
233
+ * encoder_ ->GetDefaultParams (¶m);
233
234
* param.iUsageType = usageType;
234
235
* param.fMaxFrameRate = frameRate;
235
236
* param.iPicWidth = width;
@@ -319,7 +320,7 @@ class ISVCEncoder {
319
320
* @param bIDR true: force encoder to encode frame as IDR frame;false, return 1 and nothing to do
320
321
* @return 0 - success; otherwise - failed;
321
322
*/
322
- virtual int EXTAPI ForceIntraFrame (bool bIDR,int iLayerId = -1 ) = 0;
323
+ virtual int EXTAPI ForceIntraFrame (bool bIDR, int iLayerId = -1 ) = 0;
323
324
324
325
/* *
325
326
* @brief Set option for encoder, detail option type, please refer to enumurate ENCODER_OPTION.
@@ -329,7 +330,7 @@ class ISVCEncoder {
329
330
virtual int EXTAPI SetOption (ENCODER_OPTION eOptionId, void * pOption) = 0;
330
331
331
332
/* *
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.
333
334
* @param pOption option for encoder such as InDataFormat, IDRInterval, SVC Encode Param, Frame Rate, Bitrate,...
334
335
* @return CM_RETURN: 0 - success; otherwise - failed;
335
336
*/
@@ -372,18 +373,18 @@ class ISVCDecoder {
372
373
int & iWidth,
373
374
int & iHeight) = 0;
374
375
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
+ */
387
388
virtual DECODING_STATE EXTAPI DecodeFrameNoDelay (const unsigned char * pSrc,
388
389
const int iSrcLen,
389
390
unsigned char ** ppDst,
@@ -406,6 +407,18 @@ class ISVCDecoder {
406
407
unsigned char ** ppDst,
407
408
SBufferInfo* pDstInfo) = 0;
408
409
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
+
409
422
/* *
410
423
* @brief This function parse input bitstream only, and rewrite possible SVC syntax to AVC syntax
411
424
* @param pSrc the h264 stream to be decoded
@@ -493,15 +506,18 @@ DECODING_STATE (*DecodeFrame) (ISVCDecoder*, const unsigned char* pSrc,
493
506
int * iHeight);
494
507
495
508
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);
499
512
500
513
DECODING_STATE (*DecodeFrame2) (ISVCDecoder*, const unsigned char * pSrc,
501
514
const int iSrcLen,
502
515
unsigned char ** ppDst,
503
516
SBufferInfo* pDstInfo);
504
517
518
+ DECODING_STATE (*FlushFrame) (ISVCDecoder*, unsigned char ** ppDst,
519
+ SBufferInfo* pDstInfo);
520
+
505
521
DECODING_STATE (*DecodeParser) (ISVCDecoder*, const unsigned char * pSrc,
506
522
const int iSrcLen,
507
523
SParserBsInfo* pDstInfo);
@@ -567,7 +583,7 @@ OpenH264Version WelsGetCodecVersion (void);
567
583
/* * @brief Get codec version
568
584
* @param pVersion struct to fill in with the version
569
585
*/
570
- void WelsGetCodecVersionEx (OpenH264Version * pVersion);
586
+ void WelsGetCodecVersionEx (OpenH264Version* pVersion);
571
587
572
588
#ifdef __cplusplus
573
589
}
0 commit comments