native_avformat.h

概述

声明了格式相关的函数和枚举。

起始版本: 9

相关模块:

Core

汇总

类型定义

名称 描述
OH_AVPixelFormat AVPixel 格式的枚举。

枚举

名称 描述
OH_AVPixelFormat {
AV_PIXEL_FORMAT_YUVI420 = 1, AV_PIXEL_FORMAT_NV12 = 2, AV_PIXEL_FORMAT_NV21 = 3, AV_PIXEL_FORMAT_SURFACE_FORMAT = 4, AV_PIXEL_FORMAT_RGBA = 5
}
AVPixel 格式的枚举。

函数

名称 描述
OH_AVFormat_Create (void) 创建一个OH_AVFormat句柄指针,用以读写数据。
OH_AVFormat_Destroy (struct OH_AVFormat *format) 销毁指定OH_AVFormat句柄资源。
OH_AVFormat_Copy (struct OH_AVFormat *to, struct OH_AVFormat *from) 拷贝OH_AVFormat句柄资源.
OH_AVFormat_SetIntValue (struct OH_AVFormat *format, const char *key, int32_t value) 向OH_AVFormat写入Int数据.
OH_AVFormat_SetLongValue (struct OH_AVFormat *format, const char *key, int64_t value) 向OH_AVFormat写入Long数据。
OH_AVFormat_SetFloatValue (struct OH_AVFormat *format, const char *key, float value) 向OH_AVFormat写入Float数据。
OH_AVFormat_SetDoubleValue (struct OH_AVFormat *format, const char *key, double value) 向OH_AVFormat写入Double数据。
OH_AVFormat_SetStringValue (struct OH_AVFormat *format, const char *key, const char *value) 向OH_AVFormat写入String数据。
OH_AVFormat_SetBuffer (struct OH_AVFormat *format, const char *key, const uint8_t *addr, size_t size) 向OH_AVFormat写入一块指定长度的数据。
OH_AVFormat_GetIntValue (struct OH_AVFormat *format, const char *key, int32_t *out) 从OH_AVFormat读取Int数据。
OH_AVFormat_GetLongValue (struct OH_AVFormat *format, const char *key, int64_t *out) 从OH_AVFormat读取Long数据。
OH_AVFormat_GetFloatValue (struct OH_AVFormat *format, const char *key, float *out) 从OH_AVFormat读取Float数据。
OH_AVFormat_GetDoubleValue (struct OH_AVFormat *format, const char *key, double *out) 从OH_AVFormat读取Double数据。
OH_AVFormat_GetStringValue (struct OH_AVFormat *format, const char *key, const char **out) 从OH_AVFormat读取Double数据。
OH_AVFormat_GetBuffer (struct OH_AVFormat *format, const char *key, uint8_t **addr, size_t *size) 从OH_AVFormat读取一块指定长度的数据。
OH_AVFormat_DumpInfo (struct OH_AVFormat *format) 以字符串的形式输出OH_AVFormat所包含的信息。