| 1370 | using namespace WelsEnc; |
| 1371 | |
| 1372 | int32_t WelsCreateSVCEncoder (ISVCEncoder** ppEncoder) { |
| 1373 | if ((*ppEncoder = new CWelsH264SVCEncoder()) != NULL) { |
| 1374 | return 0; |
| 1375 | } |
| 1376 | |
| 1377 | return 1; |
| 1378 | } |
| 1379 | |
| 1380 | void WelsDestroySVCEncoder (ISVCEncoder* pEncoder) { |
| 1381 | CWelsH264SVCEncoder* pSVCEncoder = (CWelsH264SVCEncoder*)pEncoder; |
no outgoing calls