Defines the codecheader types.
|
dwStatus | dwCodecHeader_create (dwCodecHeaderHandle_t *handle, dwCodecType type, void *codecConfig) |
| Create a new codec header with the specified dwCodecType. More...
|
|
dwStatus | dwCodecHeader_createNew (dwCodecHeaderHandle_t *handle, char8_t const *codecMimeType, void *codecConfig, void *params, dwContextHandle_t context) |
| Create a new codec header with the specified codec MIME type. More...
|
|
dwStatus | dwCodecHeader_destroy (dwCodecHeaderHandle_t handle) |
| Destroy a previously allocated codec header. More...
|
|
dwStatus | dwCodecHeader_getCodecType (dwCodecType *const type, dwCodecHeaderConstHandle_t const handle) |
| Get the specified dwCodecType in a codec header. More...
|
|
dwStatus | dwCodecHeader_getCodecTypeNew (char8_t *type, const size_t size, dwCodecHeaderConstHandle_t const handle) |
| Get the specified codec MIME type in a codec header. More...
|
|
dwStatus | dwCodecHeader_getConfig (void *config, size_t configSize, dwMediaType mediaType, dwCodecHeaderConstHandle_t handle) |
| Get the specified dwCodecConfig* in a codec header. More...
|
|
dwStatus | dwCodecHeader_getMediaType (dwMediaType *const type, dwCodecHeaderConstHandle_t const handle) |
| Get the specified dwMediaType in a codec header. More...
|
|
dwStatus | dwCodecHeader_load (dwCodecHeaderHandle_t *const handle, void *const data, size_t const dataSize, dwContextHandle_t context) |
| Load a serialized codec header from JSON string. More...
|
|
dwStatus | dwCodecHeader_register (char const *codecMimeType, dwCodecHeaderPluginFunctions const *const funcTable, dwContextHandle_t ctx) |
| Register CodecHeader plugin with associated codec MIME type. More...
|
|
dwStatus | dwCodecHeader_release (dwCodecHeaderHandle_t const handle) |
| Release resources associated with codec header. More...
|
|
dwStatus | dwCodecHeader_save (size_t *const dataSize, void *data, size_t const maxDataSize, dwCodecHeaderConstHandle_t const handle) |
| Serializes the codec header into JSON string. More...
|
|
◆ dwCodecHeaderConstHandle_t
◆ dwCodecHeaderHandle_t
◆ dwCodecHeader_create()
Create a new codec header with the specified dwCodecType.
- Parameters
-
[out] | handle | the pointer in which the created codec header is stored |
[in] | type | the type of codec header to create |
[in] | codecConfig | the config associated with the type. Such as dwCodecConfigVideo for video codec types |
- Returns
- DW_NOT_SUPPORT if type is not a supported type.
DW_INVALID_ARGUMENT if handle is nullptr. DW_SUCCESS return successfully.
◆ dwCodecHeader_createNew()
Create a new codec header with the specified codec MIME type.
- Parameters
-
[out] | handle | the pointer in which the created codec header is stored |
[in] | codecMimeType | the type of codec header to create |
[in] | codecConfig | the config associated with the type. Such as dwCodecConfigVideo for video codec types |
[in] | params | pointer to additional parameters of associated codec header |
[in] | context | DW context |
- Returns
- DW_NOT_SUPPORT if type is not a supported type.
DW_INVALID_ARGUMENT if handle is nullptr DW_SUCCESS return successfully.
◆ dwCodecHeader_destroy()
Destroy a previously allocated codec header.
- Parameters
-
[in] | handle | the handle to release |
- Returns
- DW_SUCCESS return successfully.
◆ dwCodecHeader_getCodecType()
Get the specified dwCodecType in a codec header.
- Parameters
-
[out] | type | stored in codec header |
[in] | handle | the handle of codec header |
- Returns
- DW_INVALID_ARGUMENT if type or codecHeader is nullptr.
DW_SUCCESS return successfully.
◆ dwCodecHeader_getCodecTypeNew()
Get the specified codec MIME type in a codec header.
- Parameters
-
[out] | type | stored in codec header |
[in] | size | the size of the output buffer provided |
[in] | handle | the handle of codec header |
- Returns
- DW_INVALID_ARGUMENT if type or codecHeader is nullptr.
DW_SUCCESS return successfully.
◆ dwCodecHeader_getConfig()
Get the specified dwCodecConfig* in a codec header.
- Parameters
-
[out] | config | stored in codec header |
[in] | configSize | size of the memory pointed by the passed in config pointer |
[in] | mediaType | media type corresonding to the codecHeader |
[in] | handle | the handle of codec header |
- Returns
- DW_INVALID_ARGUMENT if config or codecHeader is nullptr, or if configSize mismatches the expected size of specified mediaType.
DW_SUCCESS return successfully.
◆ dwCodecHeader_getMediaType()
Get the specified dwMediaType in a codec header.
- Parameters
-
[out] | type | stored in codec header |
[in] | handle | the handle of codec header |
- Returns
- DW_INVALID_ARGUMENT if type or codecHeader is nullptr.
DW_SUCCESS return successfully.
◆ dwCodecHeader_load()
Load a serialized codec header from JSON string.
- Parameters
-
[out] | handle | the handle of codec to populate |
[in] | data | pointer to memory block to containing the serialized codec header |
[in] | dataSize | size of the serialized data |
[in] | context | DW context |
- Returns
- DW_INVALID_ARGUMENT if data or codecHeader is nullptr.
DW_SUCCESS return successfully.
◆ dwCodecHeader_register()
Register CodecHeader plugin with associated codec MIME type.
- Parameters
-
[in] | codecMimeType | the codec type of registered CodecHeader plugin |
[in] | funcTable | pointer to CodecHeader plugin function pointer table |
[in] | ctx | DW context |
- Returns
- DW_INVALID_ARGUMENT if codecMimeType, funcTable or ctx is nullptr.
DW_BUFFER_FULL if no available entry in registration factory DW_SUCCESS return successfully.
◆ dwCodecHeader_release()
Release resources associated with codec header.
- Parameters
-
[in] | handle | the handle of codec to populate |
- Returns
- DW_SUCCESS return successfully.
◆ dwCodecHeader_save()
Serializes the codec header into JSON string.
- Parameters
-
[out] | dataSize | size of the serialized data |
[out] | data | pointer to memory block to store the serialized string |
[in] | maxDataSize | size of the memory block pointed to by data |
[in] | handle | the handle of codec header |
- Returns
- DW_INVALID_ARGUMENT if dataSize, data or codecHeader is nullptr, or if maxDataSize is smaller than the serialized size.
DW_SUCCESS return successfully.