_core.md 14.0 KB
Newer Older
Z
zengyawen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# Core


## 概述

Core模块提供用于播放框架的基础骨干能力,包含内存、错误码、格式载体等相关函数。

@syscap SystemCapability.Multimedia.Media.Core

**Since:**
9
**Version:**
1.0

## 汇总


### 文件

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
22 23 24
| [native_averrors.h](native__averrors_8h.md) | 声明了媒体播放框架的错误码。  | 
| [native_avformat.h](native__avformat_8h.md) | 声明了格式相关的函数和枚举。  | 
| [native_avmemory.h](native__avmemory_8h.md) | 声明了AVMemory的函数接口。  | 
Z
zengyawen 已提交
25 26 27 28 29 30


### 类型定义

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
31 32 33 34
| [OH_AVErrCode](#ohaverrcode) | typedef enum [OH_AVErrCode](#ohaverrcode)<br/>音视频错误码。  | 
| **OH_AVFormat** | typedef struct OH_AVFormat | 
| [OH_AVPixelFormat](#ohavpixelformat) | typedef enum [OH_AVPixelFormat](#ohavpixelformat)<br/>AVPixel 格式的枚举。  | 
| **OH_AVMemory** | typedef struct OH_AVMemory | 
Z
zengyawen 已提交
35 36 37 38 39 40


### 枚举

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
41 42
| [OH_AVErrCode](#ohaverrcode) {<br/>**AV_ERR_OK** = 0, **AV_ERR_NO_MEMORY** = 1, **AV_ERR_OPERATE_NOT_PERMIT** = 2, **AV_ERR_INVALID_VAL** = 3, **AV_ERR_IO** = 4, **AV_ERR_TIMEOUT** = 5, **AV_ERR_UNKNOWN** = 6, **AV_ERR_SERVICE_DIED** = 7, **AV_ERR_INVALID_STATE** = 8, **AV_ERR_UNSUPPORT** = 9, **AV_ERR_EXTEND_START** = 100<br/>} | 音视频错误码。  |
| [OH_AVPixelFormat](#ohavpixelformat) {<br/>**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<br/>} | AVPixel 格式的枚举。  |
Z
zengyawen 已提交
43 44 45 46 47 48


### 函数

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
| [OH_AVFormat_Create](#ohavformatcreate) (void) | struct OH_AVFormat \*<br/>创建一个OH_AVFormat句柄指针,用以读写数据。  | 
| [OH_AVFormat_Destroy](#ohavformatdestroy) (struct OH_AVFormat \*format) | void<br/>销毁指定OH_AVFormat句柄资源。  | 
| [OH_AVFormat_Copy](#ohavformatcopy) (struct OH_AVFormat \*to, struct OH_AVFormat \*from) | bool<br/>拷贝OH_AVFormat句柄资源.  | 
| [OH_AVFormat_SetIntValue](#ohavformatsetintvalue) (struct OH_AVFormat \*format, const char \*key, int32_t value) | bool<br/>向OH_AVFormat写入Int数据.  | 
| [OH_AVFormat_SetLongValue](#ohavformatsetlongvalue) (struct OH_AVFormat \*format, const char \*key, int64_t value) | bool<br/>向OH_AVFormat写入Long数据。  | 
| [OH_AVFormat_SetFloatValue](#ohavformatsetfloatvalue) (struct OH_AVFormat \*format, const char \*key, float value) | bool<br/>向OH_AVFormat写入Float数据。  | 
| [OH_AVFormat_SetDoubleValue](#ohavformatsetdoublevalue) (struct OH_AVFormat \*format, const char \*key, double value) | bool<br/>向OH_AVFormat写入Double数据。  | 
| [OH_AVFormat_SetStringValue](#ohavformatsetstringvalue) (struct OH_AVFormat \*format, const char \*key, const char \*value) | bool<br/>向OH_AVFormat写入String数据。  | 
| [OH_AVFormat_SetBuffer](#ohavformatsetbuffer) (struct OH_AVFormat \*format, const char \*key, const uint8_t \*addr, size_t size) | bool<br/>向OH_AVFormat写入一块指定长度的数据。  | 
| [OH_AVFormat_GetIntValue](#ohavformatgetintvalue) (struct OH_AVFormat \*format, const char \*key, int32_t \*out) | bool<br/>从OH_AVFormat读取Int数据。  | 
| [OH_AVFormat_GetLongValue](#ohavformatgetlongvalue) (struct OH_AVFormat \*format, const char \*key, int64_t \*out) | bool<br/>从OH_AVFormat读取Long数据。  | 
| [OH_AVFormat_GetFloatValue](#ohavformatgetfloatvalue) (struct OH_AVFormat \*format, const char \*key, float \*out) | bool<br/>从OH_AVFormat读取Float数据。  | 
| [OH_AVFormat_GetDoubleValue](#ohavformatgetdoublevalue) (struct OH_AVFormat \*format, const char \*key, double \*out) | bool<br/>从OH_AVFormat读取Double数据。  | 
| [OH_AVFormat_GetStringValue](#ohavformatgetstringvalue) (struct OH_AVFormat \*format, const char \*key, const char \*\*out) | bool<br/>从OH_AVFormat读取Double数据。  | 
| [OH_AVFormat_GetBuffer](#ohavformatgetbuffer) (struct OH_AVFormat \*format, const char \*key, uint8_t \*\*addr, size_t \*size) | bool<br/>从OH_AVFormat读取一块指定长度的数据。  | 
| [OH_AVFormat_DumpInfo](#ohavformatdumpinfo) (struct OH_AVFormat \*format) | const char \*<br/>以字符串的形式输出OH_AVFormat所包含的信息。  | 
| [OH_AVMemory_GetAddr](#ohavmemorygetaddr) (struct OH_AVMemory \*mem) | uint8_t \*<br/>获取入参的内存虚拟地址。  | 
| [OH_AVMemory_GetSize](#ohavmemorygetsize) (struct OH_AVMemory \*mem) | int32_t<br/>获取入参的内存长度。  | 
Z
zengyawen 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111


## 类型定义说明


### OH_AVErrCode

  
```
typedef enum OH_AVErrCodeOH_AVErrCode
```
**描述:**
音视频错误码。

@syscap SystemCapability.Multimedia.Media.Core


### OH_AVPixelFormat

  
```
typedef enum OH_AVPixelFormatOH_AVPixelFormat
```
**描述:**
AVPixel 格式的枚举。

@syscap SystemCapability.Multimedia.Media.Core


## 枚举类型说明


### OH_AVErrCode

  
```
enum OH_AVErrCode
```
**描述:**
音视频错误码。

@syscap SystemCapability.Multimedia.Media.Core

  | 枚举值 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
112 113 114 115 116 117 118 119 120 121 122
| AV_ERR_OK  | 操作成功 | 
| AV_ERR_NO_MEMORY  | 无内存 | 
| AV_ERR_OPERATE_NOT_PERMIT  | 无效参数 | 
| AV_ERR_INVALID_VAL  | 无效值 | 
| AV_ERR_IO  | IO 错误 | 
| AV_ERR_TIMEOUT  | 超时错误 | 
| AV_ERR_UNKNOWN  | 未知错误 | 
| AV_ERR_SERVICE_DIED  | 媒体服务死亡 | 
| AV_ERR_INVALID_STATE  | 当前状态不支持此操作 | 
| AV_ERR_UNSUPPORT  | 未支持的接口 | 
| AV_ERR_EXTEND_START  | 扩展错误码初始值 | 
Z
zengyawen 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137


### OH_AVPixelFormat

  
```
enum OH_AVPixelFormat
```
**描述:**
AVPixel 格式的枚举。

@syscap SystemCapability.Multimedia.Media.Core

  | 枚举值 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
138 139 140 141 142
| AV_PIXEL_FORMAT_YUVI420  | yuv 420 planar | 
| AV_PIXEL_FORMAT_NV12  | NV12. yuv 420 semiplanar | 
| AV_PIXEL_FORMAT_NV21  | NV21. yvu 420 semiplanar | 
| AV_PIXEL_FORMAT_SURFACE_FORMAT  | surface格式 | 
| AV_PIXEL_FORMAT_RGBA  | RGBA8888 | 
Z
zengyawen 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162


## 函数说明


### OH_AVFormat_Copy()

  
```
bool OH_AVFormat_Copy (struct OH_AVFormat * to, struct OH_AVFormat * from )
```
**描述:**
拷贝OH_AVFormat句柄资源.

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
163 164
| to | 接收数据的OH_AVFormat句柄指针  | 
| from | 被拷贝数据的OH_AVFormat句柄指针  | 
Z
zengyawen 已提交
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVFormat_Create()

  
```
struct OH_AVFormat* OH_AVFormat_Create (void )
```
**描述:**
创建一个OH_AVFormat句柄指针,用以读写数据。

@syscap SystemCapability.Multimedia.Media.Core

**返回:**

返回OH_AVFormat实例的指针


### OH_AVFormat_Destroy()

  
```
void OH_AVFormat_Destroy (struct OH_AVFormat * format)
```
**描述:**
销毁指定OH_AVFormat句柄资源。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
204
| format | 指向OH_AVFormat实例的指针  | 
Z
zengyawen 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225

**返回:**

void


### OH_AVFormat_DumpInfo()

  
```
const char* OH_AVFormat_DumpInfo (struct OH_AVFormat * format)
```
**描述:**
以字符串的形式输出OH_AVFormat所包含的信息。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
226
| format | 指向OH_AVFormat实例的指针  | 
Z
zengyawen 已提交
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247

**返回:**

返回由键值和数据组成的字符串指针


### OH_AVFormat_GetBuffer()

  
```
bool OH_AVFormat_GetBuffer (struct OH_AVFormat * format, const char * key, uint8_t ** addr, size_t * size )
```
**描述:**
从OH_AVFormat读取一块指定长度的数据。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
248 249 250 251
| format | 指向OH_AVFormat实例的指针  | 
| key | 读写数据的键值  | 
| addr | 生命周期是format持有,伴随format销毁,如果调用者需要长期持有,必须进行内存拷贝  | 
| size | 读写数据的长度  | 
Z
zengyawen 已提交
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVFormat_GetDoubleValue()

  
```
bool OH_AVFormat_GetDoubleValue (struct OH_AVFormat * format, const char * key, double * out )
```
**描述:**
从OH_AVFormat读取Double数据。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
275 276 277
| format | 指向OH_AVFormat实例的指针  | 
| key | 读取数据的键值  | 
| out | 读取的数据  | 
Z
zengyawen 已提交
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVFormat_GetFloatValue()

  
```
bool OH_AVFormat_GetFloatValue (struct OH_AVFormat * format, const char * key, float * out )
```
**描述:**
从OH_AVFormat读取Float数据。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
301 302 303
| format | 指向OH_AVFormat实例的指针  | 
| key | 读取数据的键值  | 
| out | 读取的数据  | 
Z
zengyawen 已提交
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVFormat_GetIntValue()

  
```
bool OH_AVFormat_GetIntValue (struct OH_AVFormat * format, const char * key, int32_t * out )
```
**描述:**
从OH_AVFormat读取Int数据。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
327 328 329
| format | 指向OH_AVFormat实例的指针  | 
| key | 读取数据的键值  | 
| out | 读取的数据  | 
Z
zengyawen 已提交
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVFormat_GetLongValue()

  
```
bool OH_AVFormat_GetLongValue (struct OH_AVFormat * format, const char * key, int64_t * out )
```
**描述:**
从OH_AVFormat读取Long数据。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
353 354 355
| format | 指向OH_AVFormat实例的指针  | 
| key | 读取数据的键值  | 
| out | 读取的数据  | 
Z
zengyawen 已提交
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVFormat_GetStringValue()

  
```
bool OH_AVFormat_GetStringValue (struct OH_AVFormat * format, const char * key, const char ** out )
```
**描述:**
从OH_AVFormat读取Double数据。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
379 380 381
| format | 指向OH_AVFormat实例的指针  | 
| key | 读取数据的键值  | 
| out | 读取的字符串指针,指向的数据生命周期伴随GetString更新,伴随format销毁,如果调用者需要长期持有,必须进行内存拷贝  | 
Z
zengyawen 已提交
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVFormat_SetBuffer()

  
```
bool OH_AVFormat_SetBuffer (struct OH_AVFormat * format, const char * key, const uint8_t * addr, size_t size )
```
**描述:**
向OH_AVFormat写入一块指定长度的数据。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
405 406 407 408
| format | 指向OH_AVFormat实例的指针  | 
| key | 写入数据的键值  | 
| addr | 写入的数据地址  | 
| size | 写入的数据长度  | 
Z
zengyawen 已提交
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVFormat_SetDoubleValue()

  
```
bool OH_AVFormat_SetDoubleValue (struct OH_AVFormat * format, const char * key, double value )
```
**描述:**
向OH_AVFormat写入Double数据。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
432 433 434
| format | 指向OH_AVFormat实例的指针  | 
| key | 写入数据的键值  | 
| value | 写入的数据  | 
Z
zengyawen 已提交
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVFormat_SetFloatValue()

  
```
bool OH_AVFormat_SetFloatValue (struct OH_AVFormat * format, const char * key, float value )
```
**描述:**
向OH_AVFormat写入Float数据。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
458 459 460
| format | 指向OH_AVFormat实例的指针  | 
| key | 写入数据的键值  | 
| value | 写入的数据  | 
Z
zengyawen 已提交
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVFormat_SetIntValue()

  
```
bool OH_AVFormat_SetIntValue (struct OH_AVFormat * format, const char * key, int32_t value )
```
**描述:**
向OH_AVFormat写入Int数据.

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
484 485 486
| format | 指向OH_AVFormat实例的指针  | 
| key | 写入数据的键值  | 
| value | 写入的数据  | 
Z
zengyawen 已提交
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVFormat_SetLongValue()

  
```
bool OH_AVFormat_SetLongValue (struct OH_AVFormat * format, const char * key, int64_t value )
```
**描述:**
向OH_AVFormat写入Long数据。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
510 511 512
| format | 指向OH_AVFormat实例的指针  | 
| key | 写入数据的键值  | 
| value | 写入的数据  | 
Z
zengyawen 已提交
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVFormat_SetStringValue()

  
```
bool OH_AVFormat_SetStringValue (struct OH_AVFormat * format, const char * key, const char * value )
```
**描述:**
向OH_AVFormat写入String数据。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
536 537 538
| format | 指向OH_AVFormat实例的指针  | 
| key | 写入数据的键值  | 
| value | 写入的数据  | 
Z
zengyawen 已提交
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561

**返回:**

返回值为TRUE表示成功

返回值为FALSE表示失败


### OH_AVMemory_GetAddr()

  
```
uint8_t* OH_AVMemory_GetAddr (struct OH_AVMemory * mem)
```
**描述:**
获取入参的内存虚拟地址。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
562
| mem | 指向OH_AVMemory实例的指针  | 
Z
zengyawen 已提交
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585

**返回:**

如果内存有效,返回内存的虚拟地址

如果内存无效,返回nullptr


### OH_AVMemory_GetSize()

  
```
int32_t OH_AVMemory_GetSize (struct OH_AVMemory * mem)
```
**描述:**
获取入参的内存长度。

@syscap SystemCapability.Multimedia.Media.Core

**参数:**

  | 名称 | 描述 | 
| -------- | -------- |
Z
zengyawen 已提交
586
| mem | 指向OH_AVMemory实例的指针  | 
Z
zengyawen 已提交
587 588 589 590 591 592

**返回:**

如果内存有效,返回内存长度

如果内存无效,返回-1