* WelsCreateDecoder * @return: success in return 0, otherwise failed. */
| 1404 | * @return: success in return 0, otherwise failed. |
| 1405 | */ |
| 1406 | long WelsCreateDecoder (ISVCDecoder** ppDecoder) { |
| 1407 | |
| 1408 | if (NULL == ppDecoder) { |
| 1409 | return ERR_INVALID_PARAMETERS; |
| 1410 | } |
| 1411 | |
| 1412 | *ppDecoder = new CWelsDecoder(); |
| 1413 | |
| 1414 | if (NULL == *ppDecoder) { |
| 1415 | return ERR_MALLOC_FAILED; |
| 1416 | } |
| 1417 | |
| 1418 | return ERR_NONE; |
| 1419 | } |
| 1420 | |
| 1421 | /* |
| 1422 | * WelsDestroyDecoder |