openharmony 鸿蒙 capi-native-avformat-h

2026-08-25 浏览 (1)

native_avformat.h

Overview

The file declares the functions and enums related to OH_AVFormat.

File to include: <multimedia/player_framework/native_avformat.h>

Library: libnative_media_core.so

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Related module: Core

Sample: AVCodec

Summary

Structs

Nametypedef KeywordDescription
OH_AVFormatOH_AVFormatDescribes a native object for the OH_AVFormat interface.

Enums

Nametypedef KeywordDescription
OH_AVPixelFormatOH_AVPixelFormatEnumerates the video pixel formats.

Functions

NameDescription
struct OH_AVFormat *OH_AVFormat_Create(void)Create an OH_AVFormat instance for reading data.
struct OH_AVFormat *OH_AVFormat_CreateAudioFormat(const char *mimeType, int32_t sampleRate, int32_t channelCount)Creates an audio OH_AVFormat instance with specified parameters for reading and writing data.
struct OH_AVFormat *OH_AVFormat_CreateVideoFormat(const char *mimeType, int32_t width, int32_t height)Creates a video OH_AVFormat instance with specified parameters for reading and writing data.
void OH_AVFormat_Destroy(struct OH_AVFormat *format)Destroys an OH_AVFormat instance. The instance cannot be destroyed repeatedly.
bool OH_AVFormat_Copy(struct OH_AVFormat *to, struct OH_AVFormat *from)Copies an OH_AVFormat instance.
bool OH_AVFormat_SetIntValue(struct OH_AVFormat *format, const char *key, int32_t value)Assigns a value of the int type to a key in an OH_AVFormat instance. This function can be used to set only parameters of the int type. For details, see native_avcodec_base.h.
bool OH_AVFormat_SetUintValue(struct OH_AVFormat *format, const char *key, uint32_t value)Assigns an unsigned int value to the key of OH_AVFormat. This API can be used to set only parameters of the unsigned int type. For details, see native_avcodec_base.h.
bool OH_AVFormat_SetLongValue(struct OH_AVFormat *format, const char *key, int64_t value)Assigns a value of the long type to a key in an OH_AVFormat instance. This function can be used to set only parameters of the long type. For details, see native_avcodec_base.h.
bool OH_AVFormat_SetFloatValue(struct OH_AVFormat *format, const char *key, float value)Assigns a value of the float type to a key in an OH_AVFormat instance. This function can be used to set only parameters of the float type. For details, see native_avcodec_base.h.
bool OH_AVFormat_SetDoubleValue(struct OH_AVFormat *format, const char *key, double value)Assigns a value of the double type to a key in an OH_AVFormat instance. This function can be used to set only parameters of the double type. For details, see native_avcodec_base.h.
bool OH_AVFormat_SetStringValue(struct OH_AVFormat *format, const char *key, const char *value)Assigns a value of the string type to a key in an OH_AVFormat instance. This function can be used to set only parameters of the string type. For details, see native_avcodec_base.h.
bool OH_AVFormat_SetBuffer(struct OH_AVFormat *format, const char *key, const uint8_t *addr, size_t size)Writes data blocks of a specified length to an OH_AVFormat instance. This function can be used to set only parameters of the buffer type. For details, see native_avcodec_base.h.
bool OH_AVFormat_GetIntValue(struct OH_AVFormat *format, const char *key, int32_t *out)Obtains the value of the int type of a key in an OH_AVFormat instance.
bool OH_AVFormat_GetUintValue(struct OH_AVFormat *format, const char *key, uint32_t *out)Obtains the value of the unsigned int type from an OH_AVFormat instance using a key
bool OH_AVFormat_GetLongValue(struct OH_AVFormat *format, const char *key, int64_t *out)Obtains the value of the long type of a key in an OH_AVFormat instance.
bool OH_AVFormat_GetFloatValue(struct OH_AVFormat *format, const char *key, float *out)Obtains the value of the float type of a key in an OH_AVFormat instance.
bool OH_AVFormat_GetDoubleValue(struct OH_AVFormat *format, const char *key, double *out)Obtains the value of the double type of a key in an OH_AVFormat instance.
bool OH_AVFormat_GetStringValue(struct OH_AVFormat *format, const char *key, const char **out)Obtains the value of the string type of a key in an OH_AVFormat instance.
bool OH_AVFormat_GetBuffer(struct OH_AVFormat *format, const char *key, uint8_t **addr, size_t *size)Reads data blocks of a specified length from an OH_AVFormat instance.
bool OH_AVFormat_GetIntBuffer(struct OH_AVFormat *format, const char *key, int32_t **addr, size_t *size)Reads an array of int32_t data from an OH_AVFormat instance.
Note that the buffer lifecycle is bound to the OH_AVFormat instance. The buffer becomes invalid automatically when the OH_AVFormat instance is destroyed.
To keep the data for an extended period, explicitly copy the data to newly allocated memory.
const char *OH_AVFormat_DumpInfo(struct OH_AVFormat *format)Returns a string consisting of key-value pairs in an OH_AVFormat instance. A string of up to 1024 bytes can be returned. The string pointer is released when the OH_AVFormat instance is destroyed.
bool OH_AVFormat_SetIntBuffer(struct OH_AVFormat *format, const char *key, const int32_t *addr, size_t size)Writes data blocks of the int32_t type with a specified length to an OH_AVFormat instance.
uint32_t OH_AVFormat_GetKeyCount(OH_AVFormat *format)Obtains the total number of keys in an OH_AVFormat instance.
bool OH_AVFormat_GetKey(OH_AVFormat *format, uint32_t index, const char **key)Obtains the key name string from an OH_AVFormat instance by index.

Enum Description

OH_AVPixelFormat

enum OH_AVPixelFormat

Description

Enumerates the video pixel formats.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

ValueDescription
AV_PIXEL_FORMAT_YUVI420 = 1YUV 420 Planar.
AV_PIXEL_FORMAT_NV12 = 2NV12. YUV 420 semi-planar.
AV_PIXEL_FORMAT_NV21 = 3NV21. YVU 420 semi-planar.
AV_PIXEL_FORMAT_SURFACE_FORMAT = 4Pixel format obtained from the surface. This value takes effect only in surface mode.
AV_PIXEL_FORMAT_RGBA = 5RGBA8888.
AV_PIXEL_FORMAT_RGBA1010102 = 6RGBA1010102.
Since: 20

Function Description

OH_AVFormat_Create()

struct OH_AVFormat *OH_AVFormat_Create(void)

Description

Create an OH_AVFormat instance for reading data.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Returns

TypeDescription
struct OH_AVFormat *Pointer to an OH_AVFormat instance. If system resources are insufficient, NULL is returned.

OH_AVFormat_CreateAudioFormat()

struct OH_AVFormat *OH_AVFormat_CreateAudioFormat(const char *mimeType, int32_t sampleRate, int32_t channelCount)

Description

Creates an audio OH_AVFormat instance with specified parameters for reading and writing data.

System capability: SystemCapability.Multimedia.Media.Core

Since: 10

Parameters

NameDescription
const char *mimeTypePointer to a string that describes the MIME type. For details, see AVCODEC_MIMETYPE.
int32_t sampleRateSampling rate, in Hz.
int32_t channelCountNumber of audio channels. For example, 1 indicates mono and 2 indicates stereo.

Returns

TypeDescription
struct OH_AVFormat *Pointer to the OH_AVFormat instance created. If the operation fails, NULL is returned.
The possible causes of an operation failure are as follows:
1. The value of mimeType is NULL.
2. System resources are insufficient.

OH_AVFormat_CreateVideoFormat()

struct OH_AVFormat *OH_AVFormat_CreateVideoFormat(const char *mimeType, int32_t width, int32_t height)

Description

Creates a video OH_AVFormat instance with specified parameters for reading and writing data.

System capability: SystemCapability.Multimedia.Media.Core

Since: 10

Parameters

NameDescription
const char *mimeTypePointer to a string that describes the MIME type. For details, see AVCODEC_MIMETYPE.
int32_t widthImage width, in pixels.
int32_t heightImage height, in pixels.

Returns

TypeDescription
struct OH_AVFormat *Pointer to the OH_AVFormat instance created. If the operation fails, NULL is returned.
The possible causes of an operation failure are as follows:
1. The value of mimeType is NULL.
2. System resources are insufficient.

OH_AVFormat_Destroy()

void OH_AVFormat_Destroy(struct OH_AVFormat *format)

Description

Destroys an OH_AVFormat instance. The instance cannot be destroyed repeatedly.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.

OH_AVFormat_Copy()

bool OH_AVFormat_Copy(struct OH_AVFormat *to, struct OH_AVFormat *from)

Description

Copies an OH_AVFormat instance.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *toPointer to the OH_AVFormat instance to which the data will be copied.
struct OH_AVFormat *fromPointer to the OH_AVFormat instance from which the data will be copied.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The input parameter is nullptr.
2. The value of OH_AVFormat fails parameter structure verification.

OH_AVFormat_SetIntValue()

bool OH_AVFormat_SetIntValue(struct OH_AVFormat *format, const char *key, int32_t value)

Description

Assigns a value of the int type to a key in an OH_AVFormat instance. This function can be used to set only parameters of the int type. For details, see native_avcodec_base.h.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to write.
int32_t valueValue of the data to write.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value type corresponding to the key is incorrect.

OH_AVFormat_SetUintValue()

bool OH_AVFormat_SetUintValue(struct OH_AVFormat *format, const char *key, uint32_t value)

Description

Assigns an unsigned int value to the key of an OH_AVFormat instance. This API can be used to set only parameters of the unsigned int type. For details, see native_avcodec_base.h.

Since: 23

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to write.
uint32_t valueValue of the data to write.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.

OH_AVFormat_SetLongValue()

bool OH_AVFormat_SetLongValue(struct OH_AVFormat *format, const char *key, int64_t value)

Description

Assigns a value of the long type to a key in an OH_AVFormat instance. This function can be used to set only parameters of the long type. For details, see native_avcodec_base.h.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to write.
int64_t valueValue of the data to write.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value type corresponding to the key is incorrect.

OH_AVFormat_SetFloatValue()

bool OH_AVFormat_SetFloatValue(struct OH_AVFormat *format, const char *key, float value)

Description

Assigns a value of the float type to a key in an OH_AVFormat instance. This function can be used to set only parameters of the float type. For details, see native_avcodec_base.h.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to write.
float valueValue of the data to write.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value type corresponding to the key is incorrect.

OH_AVFormat_SetDoubleValue()

bool OH_AVFormat_SetDoubleValue(struct OH_AVFormat *format, const char *key, double value)

Description

Assigns a value of the double type to a key in an OH_AVFormat instance. This function can be used to set only parameters of the double type. For details, see native_avcodec_base.h.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to write.
double valueValue of the data to write.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value type corresponding to the key is incorrect.

OH_AVFormat_SetStringValue()

bool OH_AVFormat_SetStringValue(struct OH_AVFormat *format, const char *key, const char *value)

Description

Assigns a value of the string type to a key in an OH_AVFormat instance. This function can be used to set only parameters of the string type. For details, see native_avcodec_base.h.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to write.
const char *valuePointer to the data to be written to the string. The length should not exceed 256 bytes.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The passed-in value of value is a null pointer.
5. The value type corresponding to the key is incorrect.

OH_AVFormat_SetBuffer()

bool OH_AVFormat_SetBuffer(struct OH_AVFormat *format, const char *key, const uint8_t *addr, size_t size)

Description

Writes data blocks of a specified length to an OH_AVFormat instance. This function can be used to set only parameters of the buffer type. For details, see native_avcodec_base.h.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to write.
const uint8_t *addrPointer to the address to which data is written. The lifecycle is managed by the developer.
size_t sizeLength of the data written, in MB. The value range is (0, 1].

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value of addr is nullptr.
5. The size is 0 or exceeds the upper limit 1 MB.
6. The value type corresponding to the key is incorrect.

OH_AVFormat_GetIntValue()

bool OH_AVFormat_GetIntValue(struct OH_AVFormat *format, const char *key, int32_t *out)

Description

Obtains the value of the int type of a key in an OH_AVFormat instance.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to read.
int32_t *outPointer to the value of the data read.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value of out is nullptr.
5. The obtained key does not exist or is not set.

OH_AVFormat_GetUintValue()

bool OH_AVFormat_GetUintValue(struct OH_AVFormat *format, const char *key, uint32_t *out)

Description

Obtains the value of the unsigned int type from an OH_AVFormat instance using a key.

Since: 23

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to read.
uint32_t *outPointer to the value of the data read.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value of out is nullptr.

OH_AVFormat_GetLongValue()

bool OH_AVFormat_GetLongValue(struct OH_AVFormat *format, const char *key, int64_t *out)

Description

Obtains the value of the long type of a key in an OH_AVFormat instance.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to read.
int64_t *outPointer to the value of the data read.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value of out is nullptr.
5. The obtained key does not exist or is not set.

OH_AVFormat_GetFloatValue()

bool OH_AVFormat_GetFloatValue(struct OH_AVFormat *format, const char *key, float *out)

Description

Obtains the value of the float type of a key in an OH_AVFormat instance.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to read.
float *outPointer to the value of the data read.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value of out is nullptr.
5. The obtained key does not exist or is not set.

OH_AVFormat_GetDoubleValue()

bool OH_AVFormat_GetDoubleValue(struct OH_AVFormat *format, const char *key, double *out)

Description

Obtains the value of the double type of a key in an OH_AVFormat instance.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to read.
double *outPointer to the value of the data read.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value of out is nullptr.
5. The obtained key does not exist or is not set.

OH_AVFormat_GetStringValue()

bool OH_AVFormat_GetStringValue(struct OH_AVFormat *format, const char *key, const char **out)

Description

Obtains the value of the string type of a key in an OH_AVFormat instance.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to read.
const char **outDouble pointer to the string read. The lifecycle of the out data matches the string in format. To keep the out data for an extended period of time, you must copy it to the memory. The maximum length of the output string is 256 bytes. If the length exceeds 256 bytes, false is returned.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value of out is nullptr.
5. The system resources are insufficient.
6. The obtained key does not exist or is not set.
7. The length of the out data exceeds 256 bytes.

OH_AVFormat_GetBuffer()

bool OH_AVFormat_GetBuffer(struct OH_AVFormat *format, const char *key, uint8_t **addr, size_t *size)

Description

Reads data blocks of a specified length from an OH_AVFormat instance.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to read.
uint8_t **addrDouble pointer to the address where the data read is stored. The data read is destroyed when the OH_AVFormat instance is destroyed. To hold the data for an extended period of time, copy it to the memory.
size_t *sizePointer to the size of the data read.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value of addr is nullptr.
5. The value of size is nullptr.
6. The obtained key does not exist or is not set.

OH_AVFormat_GetIntBuffer()

bool OH_AVFormat_GetIntBuffer(struct OH_AVFormat *format, const char *key, int32_t **addr, size_t *size)

Description

Reads an array of int32_t data from an OH_AVFormat instance.
Note that the buffer lifecycle is bound to the OH_AVFormat instance. The buffer becomes invalid automatically when the OH_AVFormat instance is destroyed.
To keep the data for an extended period, explicitly copy the data to newly allocated memory.

System capability: SystemCapability.Multimedia.Media.Core

Since: 20

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to read.
int32_t **addrDouble pointer to the memory where the data is stored.
size_t *sizePointer to the number of elements read.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value of addr is nullptr.
5. The value of size is nullptr.

OH_AVFormat_DumpInfo()

const char *OH_AVFormat_DumpInfo(struct OH_AVFormat *format)

Description

Returns a string consisting of key-value pairs in an OH_AVFormat instance. A string of up to 1024 bytes can be returned. The string pointer is released when the OH_AVFormat instance is destroyed.

System capability: SystemCapability.Multimedia.Media.Core

Since: 9

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.

Returns

TypeDescription
const char *A string consisting of key-value pairs. If the operation fails, NULL is returned.
The possible causes of an operation failure are as follows:
1. The value of format is NULL.
2. System resources are insufficient.

OH_AVFormat_SetIntBuffer()

bool OH_AVFormat_SetIntBuffer(struct OH_AVFormat *format, const char *key, const int32_t *addr, size_t size)

Description

Writes data blocks of the int32_t type with a specified length to an OH_AVFormat instance.

System capability: SystemCapability.Multimedia.Media.Core

Since: 20

Parameters

NameDescription
struct OH_AVFormat *formatPointer to an OH_AVFormat instance.
const char *keyPointer to the key of the data to write.
const int32_t *addrPointer to the address to which data is written. The lifecycle is managed by the developer.
size_t sizeLength of the data to write, in units of elements, not bytes.

Returns

TypeDescription
booltrue if the operation is successful; false otherwise.
The possible causes of an operation failure are as follows:
1. The value of format is nullptr.
2. The value of format fails parameter structure verification.
3. The value of key is nullptr.
4. The value of addr is nullptr.
5. The value of size is 0.

OH_AVFormat_GetKeyCount()

uint32_t OH_AVFormat_GetKeyCount(OH_AVFormat *format)

Description

Obtains the total number of keys in an OH_AVFormat instance.

Since: 23

Parameters

NameDescription
OH_AVFormat *formatPointer to an OH_AVFormat instance.

Returns

TypeDescription
uint32_tReturns the number of keys on success; returns 0 otherwise.

OH_AVFormat_GetKey()

bool OH_AVFormat_GetKey(OH_AVFormat *format, uint32_t index, const char **key)

Description

Obtains the key name string from an OH_AVFormat instance by index.

Since: 23

Parameters

NameDescription
OH_AVFormat *formatPointer to an OH_AVFormat instance.
uint32_t indexIndex of the key to be queried. The value range is [0, OH_AVFormat_GetKeyCount(format)).
const char **keyOutput pointer for receiving the key name string. The lifecycle of the string is bound to the format object.

Returns

TypeDescription
boolReturns true on success; returns false otherwise.

你可能感兴趣的鸿蒙文章

openharmony 鸿蒙 capi-native-avcodec-audiocodec-h

openharmony 鸿蒙 capi-avsource-oh-avsource

openharmony 鸿蒙 capi-native-cencinfo-h

openharmony 鸿蒙 capi-avmuxer

openharmony 鸿蒙 capi-multimedia-drm-oh-avcencinfo

openharmony 鸿蒙 capi-native-avdemuxer-h

openharmony 鸿蒙 capi-media-types-h

openharmony 鸿蒙 capi-native-audio-channel-layout-h

openharmony 鸿蒙 capi-native-avbuffer-info-h

openharmony 鸿蒙 capi-codecbase-oh-avcodecasynccallback

  • 所属分类: 后端技术
  • 本文标签: 软件 鸿蒙
  • 版权声明: 本文链接 https://seaxiang.com/blog/gtiWPq24