1/* 2 * Copyright (c) 2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16import { describe, it, expect } from "@ohos/hypium" 17import mediacodecbasexdlndk from 'libmediacodecbasexdlndk.so' 18 19export default function mediaCodecBaseXdlNdkTest() { 20 describe('MuslMediaCodecBaseXdlTest', () => { 21 22 /** 23 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_0200 24 * @tc.name : testOHAvCapabilityGetEncoderQualityRange002 25 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 26 * @tc.size : MediumTest 27 * @tc.type : Function 28 * @tc.level : Level 1 29 */ 30 it('testOHAvCapabilityGetEncoderQualityRange002', 0, async (done: Function) => { 31 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeAnormal(); 32 expect(result).assertEqual(0); 33 done(); 34 }); 35 36 /** 37 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_0300 38 * @tc.name : testOHAvCapabilityGetEncoderQualityRange003 39 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 40 * @tc.size : MediumTest 41 * @tc.type : Function 42 * @tc.level : Level 1 43 */ 44 it('testOHAvCapabilityGetEncoderQualityRange003', 0, async (done: Function) => { 45 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeBnormal(); 46 expect(result).assertEqual(-1); 47 done(); 48 }); 49 50 /** 51 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_0400 52 * @tc.name : testOHAvCapabilityGetEncoderQualityRange004 53 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 54 * @tc.size : MediumTest 55 * @tc.type : Function 56 * @tc.level : Level 1 57 */ 58 it('testOHAvCapabilityGetEncoderQualityRange004', 0, async (done: Function) => { 59 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeCnormal(); 60 expect(result).assertEqual(-1); 61 done(); 62 }); 63 64 /** 65 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_0500 66 * @tc.name : testOHAvCapabilityGetEncoderQualityRange005 67 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 68 * @tc.size : MediumTest 69 * @tc.type : Function 70 * @tc.level : Level 1 71 */ 72 it('testOHAvCapabilityGetEncoderQualityRange005', 0, async (done: Function) => { 73 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeDnormal(); 74 expect(result).assertEqual(-1); 75 done(); 76 }); 77 78 /** 79 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_0600 80 * @tc.name : testOHAvCapabilityGetEncoderQualityRange006 81 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 82 * @tc.size : MediumTest 83 * @tc.type : Function 84 * @tc.level : Level 1 85 */ 86 it('testOHAvCapabilityGetEncoderQualityRange006', 0, async (done: Function) => { 87 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeEnormal(); 88 expect(result).assertEqual(-1); 89 done(); 90 }); 91 92 /** 93 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_0700 94 * @tc.name : testOHAvCapabilityGetEncoderQualityRange007 95 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 96 * @tc.size : MediumTest 97 * @tc.type : Function 98 * @tc.level : Level 1 99 */ 100 it('testOHAvCapabilityGetEncoderQualityRange007', 0, async (done: Function) => { 101 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeFnormal(); 102 expect(result).assertEqual(-1); 103 done(); 104 }); 105 106 /** 107 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_0800 108 * @tc.name : testOHAvCapabilityGetEncoderQualityRange008 109 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 110 * @tc.size : MediumTest 111 * @tc.type : Function 112 * @tc.level : Level 1 113 */ 114 it('testOHAvCapabilityGetEncoderQualityRange008', 0, async (done: Function) => { 115 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeGnormal(); 116 expect(result).assertEqual(-1); 117 done(); 118 }); 119 120 /** 121 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_0900 122 * @tc.name : testOHAvCapabilityGetEncoderQualityRange009 123 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 124 * @tc.size : MediumTest 125 * @tc.type : Function 126 * @tc.level : Level 1 127 */ 128 it('testOHAvCapabilityGetEncoderQualityRange009', 0, async (done: Function) => { 129 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeHnormal(); 130 expect(result).assertEqual(-1); 131 done(); 132 }); 133 134 /** 135 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_1000 136 * @tc.name : testOHAvCapabilityGetEncoderQualityRange010 137 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 138 * @tc.size : MediumTest 139 * @tc.type : Function 140 * @tc.level : Level 1 141 */ 142 it('testOHAvCapabilityGetEncoderQualityRange010', 0, async (done: Function) => { 143 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeInormal(); 144 expect(result).assertEqual(-1); 145 done(); 146 }); 147 148 /** 149 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_1100 150 * @tc.name : testOHAvCapabilityGetEncoderQualityRange011 151 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 152 * @tc.size : MediumTest 153 * @tc.type : Function 154 * @tc.level : Level 1 155 */ 156 it('testOHAvCapabilityGetEncoderQualityRange011', 0, async (done: Function) => { 157 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeJnormal(); 158 expect(result).assertEqual(-1); 159 done(); 160 }); 161 162 /** 163 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_1200 164 * @tc.name : testOHAvCapabilityGetEncoderQualityRange012 165 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 166 * @tc.size : MediumTest 167 * @tc.type : Function 168 * @tc.level : Level 1 169 */ 170 it('testOHAvCapabilityGetEncoderQualityRange012', 0, async (done: Function) => { 171 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeKnormal(); 172 expect(result).assertEqual(0); 173 done(); 174 }); 175 176 /** 177 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_1300 178 * @tc.name : testOHAvCapabilityGetEncoderQualityRange013 179 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 180 * @tc.size : MediumTest 181 * @tc.type : Function 182 * @tc.level : Level 1 183 */ 184 it('testOHAvCapabilityGetEncoderQualityRange013', 0, async (done: Function) => { 185 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeLnormal(); 186 expect(result).assertEqual(0); 187 done(); 188 }); 189 190 /** 191 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_1400 192 * @tc.name : testOHAvCapabilityGetEncoderQualityRange014 193 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 194 * @tc.size : MediumTest 195 * @tc.type : Function 196 * @tc.level : Level 1 197 */ 198 it('testOHAvCapabilityGetEncoderQualityRange014', 0, async (done: Function) => { 199 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeMnormal(); 200 expect(result).assertEqual(0); 201 done(); 202 }); 203 204 /** 205 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_1500 206 * @tc.name : testOHAvCapabilityGetEncoderQualityRange015 207 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 208 * @tc.size : MediumTest 209 * @tc.type : Function 210 * @tc.level : Level 1 211 */ 212 it('testOHAvCapabilityGetEncoderQualityRange015', 0, async (done: Function) => { 213 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeNnormal(); 214 expect(result).assertEqual(-1); 215 done(); 216 }); 217 218 /** 219 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_1600 220 * @tc.name : testOHAvCapabilityGetEncoderQualityRange016 221 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 222 * @tc.size : MediumTest 223 * @tc.type : Function 224 * @tc.level : Level 1 225 */ 226 it('testOHAvCapabilityGetEncoderQualityRange016', 0, async (done: Function) => { 227 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeOnormal(); 228 expect(result).assertEqual(0); 229 done(); 230 }); 231 232 /** 233 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_1700 234 * @tc.name : testOHAvCapabilityGetEncoderQualityRange017 235 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 236 * @tc.size : MediumTest 237 * @tc.type : Function 238 * @tc.level : Level 1 239 */ 240 it('testOHAvCapabilityGetEncoderQualityRange017', 0, async (done: Function) => { 241 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangePnormal(); 242 expect(result).assertEqual(-1); 243 done(); 244 }); 245 246 /** 247 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_1800 248 * @tc.name : testOHAvCapabilityGetEncoderQualityRange018 249 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 250 * @tc.size : MediumTest 251 * @tc.type : Function 252 * @tc.level : Level 1 253 */ 254 it('testOHAvCapabilityGetEncoderQualityRange018', 0, async (done: Function) => { 255 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeQnormal(); 256 expect(result).assertEqual(-1); 257 done(); 258 }); 259 260 /** 261 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_1900 262 * @tc.name : testOHAvCapabilityGetEncoderQualityRange019 263 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 264 * @tc.size : MediumTest 265 * @tc.type : Function 266 * @tc.level : Level 1 267 */ 268 it('testOHAvCapabilityGetEncoderQualityRange019', 0, async (done: Function) => { 269 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeRnormal(); 270 expect(result).assertEqual(-1); 271 done(); 272 }); 273 274 /** 275 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_2000 276 * @tc.name : testOHAvCapabilityGetEncoderQualityRange020 277 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 278 * @tc.size : MediumTest 279 * @tc.type : Function 280 * @tc.level : Level 1 281 */ 282 it('testOHAvCapabilityGetEncoderQualityRange020', 0, async (done: Function) => { 283 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeSnormal(); 284 expect(result).assertEqual(0); 285 done(); 286 }); 287 288 /** 289 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_2100 290 * @tc.name : testOHAvCapabilityGetEncoderQualityRange021 291 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 292 * @tc.size : MediumTest 293 * @tc.type : Function 294 * @tc.level : Level 1 295 */ 296 it('testOHAvCapabilityGetEncoderQualityRange021', 0, async (done: Function) => { 297 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeTnormal(); 298 expect(result).assertEqual(0); 299 done(); 300 }); 301 302 /** 303 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_2200 304 * @tc.name : testOHAvCapabilityGetEncoderQualityRange022 305 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 306 * @tc.size : MediumTest 307 * @tc.type : Function 308 * @tc.level : Level 1 309 */ 310 it('testOHAvCapabilityGetEncoderQualityRange022', 0, async (done: Function) => { 311 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeUnormal(); 312 expect(result).assertEqual(-1); 313 done(); 314 }); 315 316 /** 317 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_2300 318 * @tc.name : testOHAvCapabilityGetEncoderQualityRange023 319 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 320 * @tc.size : MediumTest 321 * @tc.type : Function 322 * @tc.level : Level 1 323 */ 324 it('testOHAvCapabilityGetEncoderQualityRange023', 0, async (done: Function) => { 325 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeVnormal(); 326 expect(result).assertEqual(-1); 327 done(); 328 }); 329 330 /** 331 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_2400 332 * @tc.name : testOHAvCapabilityGetEncoderQualityRange024 333 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 334 * @tc.size : MediumTest 335 * @tc.type : Function 336 * @tc.level : Level 1 337 */ 338 it('testOHAvCapabilityGetEncoderQualityRange024', 0, async (done: Function) => { 339 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeWnormal(); 340 expect(result).assertEqual(-1); 341 done(); 342 }); 343 344 /** 345 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_2500 346 * @tc.name : testOHAvCapabilityGetEncoderQualityRange025 347 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 348 * @tc.size : MediumTest 349 * @tc.type : Function 350 * @tc.level : Level 1 351 */ 352 it('testOHAvCapabilityGetEncoderQualityRange025', 0, async (done: Function) => { 353 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeXnormal(); 354 expect(result).assertEqual(-1); 355 done(); 356 }); 357 358 /** 359 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_2600 360 * @tc.name : testOHAvCapabilityGetEncoderQualityRange026 361 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 362 * @tc.size : MediumTest 363 * @tc.type : Function 364 * @tc.level : Level 1 365 */ 366 it('testOHAvCapabilityGetEncoderQualityRange026', 0, async (done: Function) => { 367 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeYnormal(); 368 expect(result).assertEqual(-1); 369 done(); 370 }); 371 372 /** 373 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_2700 374 * @tc.name : testOHAvCapabilityGetEncoderQualityRange027 375 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 376 * @tc.size : MediumTest 377 * @tc.type : Function 378 * @tc.level : Level 1 379 */ 380 it('testOHAvCapabilityGetEncoderQualityRange027', 0, async (done: Function) => { 381 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeZnormal(); 382 expect(result).assertEqual(-1); 383 done(); 384 }); 385 386 /** 387 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_2800 388 * @tc.name : testOHAvCapabilityGetEncoderQualityRange028 389 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 390 * @tc.size : MediumTest 391 * @tc.type : Function 392 * @tc.level : Level 1 393 */ 394 it('testOHAvCapabilityGetEncoderQualityRange028', 0, async (done: Function) => { 395 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeAAnormal(); 396 expect(result).assertEqual(-1); 397 done(); 398 }); 399 400 /** 401 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_2900 402 * @tc.name : testOHAvCapabilityGetEncoderQualityRange029 403 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 404 * @tc.size : MediumTest 405 * @tc.type : Function 406 * @tc.level : Level 1 407 */ 408 it('testOHAvCapabilityGetEncoderQualityRange029', 0, async (done: Function) => { 409 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeABnormal(); 410 expect(result).assertEqual(-1); 411 done(); 412 }); 413 414 /** 415 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_3000 416 * @tc.name : testOHAvCapabilityGetEncoderQualityRange030 417 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 418 * @tc.size : MediumTest 419 * @tc.type : Function 420 * @tc.level : Level 1 421 */ 422 it('testOHAvCapabilityGetEncoderQualityRange030', 0, async (done: Function) => { 423 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeACnormal(); 424 expect(result).assertEqual(0); 425 done(); 426 }); 427 428 /** 429 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_1100 430 * @tc.name : testOHAvCapabilityGetEncoderQualityRange031 431 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 432 * @tc.size : MediumTest 433 * @tc.type : Function 434 * @tc.level : Level 1 435 */ 436 it('testOHAvCapabilityGetEncoderQualityRange031', 0, async (done: Function) => { 437 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeADnormal(); 438 expect(result).assertEqual(-1); 439 done(); 440 }); 441 442 /** 443 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_3200 444 * @tc.name : testOHAvCapabilityGetEncoderQualityRange032 445 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 446 * @tc.size : MediumTest 447 * @tc.type : Function 448 * @tc.level : Level 1 449 */ 450 it('testOHAvCapabilityGetEncoderQualityRange032', 0, async (done: Function) => { 451 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeAEnormal(); 452 expect(result).assertEqual(0); 453 done(); 454 }); 455 456 /** 457 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_3300 458 * @tc.name : testOHAvCapabilityGetEncoderQualityRange033 459 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 460 * @tc.size : MediumTest 461 * @tc.type : Function 462 * @tc.level : Level 1 463 */ 464 it('testOHAvCapabilityGetEncoderQualityRange033', 0, async (done: Function) => { 465 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeAFnormal(); 466 expect(result).assertEqual(-1); 467 done(); 468 }); 469 470 /** 471 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_3400 472 * @tc.name : testOHAvCapabilityGetEncoderQualityRange034 473 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 474 * @tc.size : MediumTest 475 * @tc.type : Function 476 * @tc.level : Level 1 477 */ 478 it('testOHAvCapabilityGetEncoderQualityRange034', 0, async (done: Function) => { 479 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeAGnormal(); 480 expect(result).assertEqual(0); 481 done(); 482 }); 483 484 /** 485 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_3500 486 * @tc.name : testOHAvCapabilityGetEncoderQualityRange035 487 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 488 * @tc.size : MediumTest 489 * @tc.type : Function 490 * @tc.level : Level 1 491 */ 492 it('testOHAvCapabilityGetEncoderQualityRange035', 0, async (done: Function) => { 493 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeAHnormal(); 494 expect(result).assertEqual(-1); 495 done(); 496 }); 497 498 /** 499 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_3600 500 * @tc.name : testOHAvCapabilityGetEncoderQualityRange036 501 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 502 * @tc.size : MediumTest 503 * @tc.type : Function 504 * @tc.level : Level 1 505 */ 506 it('testOHAvCapabilityGetEncoderQualityRange036', 0, async (done: Function) => { 507 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeAInormal(); 508 expect(result).assertEqual(0); 509 done(); 510 }); 511 512 /** 513 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_3700 514 * @tc.name : testOHAvCapabilityGetEncoderQualityRange037 515 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 516 * @tc.size : MediumTest 517 * @tc.type : Function 518 * @tc.level : Level 1 519 */ 520 it('testOHAvCapabilityGetEncoderQualityRange037', 0, async (done: Function) => { 521 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeAJnormal(); 522 expect(result).assertEqual(-1); 523 done(); 524 }); 525 526 /** 527 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_3800 528 * @tc.name : testOHAvCapabilityGetEncoderQualityRange038 529 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 530 * @tc.size : MediumTest 531 * @tc.type : Function 532 * @tc.level : Level 1 533 */ 534 it('testOHAvCapabilityGetEncoderQualityRange038', 0, async (done: Function) => { 535 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeAKnormal(); 536 expect(result).assertEqual(-1); 537 done(); 538 }); 539 540 /** 541 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_3900 542 * @tc.name : testOHAvCapabilityGetEncoderQualityRange039 543 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 544 * @tc.size : MediumTest 545 * @tc.type : Function 546 * @tc.level : Level 1 547 */ 548 it('testOHAvCapabilityGetEncoderQualityRange039', 0, async (done: Function) => { 549 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeALnormal(); 550 expect(result).assertEqual(-1); 551 done(); 552 }); 553 554 /** 555 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_4000 556 * @tc.name : testOHAvCapabilityGetEncoderQualityRange040 557 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 558 * @tc.size : MediumTest 559 * @tc.type : Function 560 * @tc.level : Level 1 561 */ 562 it('testOHAvCapabilityGetEncoderQualityRange040', 0, async (done: Function) => { 563 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderQualityRangeAMnormal(); 564 expect(result).assertEqual(-1); 565 done(); 566 }); 567 568 /** 569 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_0200 570 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange002 571 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 572 * @tc.size : MediumTest 573 * @tc.type : Function 574 * @tc.level : Level 1 575 */ 576 it('testOHAvCapabilityGetEncoderComplexityRange002', 0, async (done: Function) => { 577 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeAnormal(); 578 expect(result).assertEqual(-1); 579 done(); 580 }); 581 582 /** 583 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_0300 584 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange003 585 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 586 * @tc.size : MediumTest 587 * @tc.type : Function 588 * @tc.level : Level 1 589 */ 590 it('testOHAvCapabilityGetEncoderComplexityRange003', 0, async (done: Function) => { 591 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeBnormal(); 592 expect(result).assertEqual(-1); 593 done(); 594 }); 595 596 /** 597 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_0400 598 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange004 599 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 600 * @tc.size : MediumTest 601 * @tc.type : Function 602 * @tc.level : Level 1 603 */ 604 it('testOHAvCapabilityGetEncoderComplexityRange004', 0, async (done: Function) => { 605 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeCnormal(); 606 expect(result).assertEqual(-1); 607 done(); 608 }); 609 610 /** 611 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_0500 612 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange005 613 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 614 * @tc.size : MediumTest 615 * @tc.type : Function 616 * @tc.level : Level 1 617 */ 618 it('testOHAvCapabilityGetEncoderComplexityRange005', 0, async (done: Function) => { 619 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeDnormal(); 620 expect(result).assertEqual(-1); 621 done(); 622 }); 623 624 /** 625 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_0600 626 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange006 627 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 628 * @tc.size : MediumTest 629 * @tc.type : Function 630 * @tc.level : Level 1 631 */ 632 it('testOHAvCapabilityGetEncoderComplexityRange006', 0, async (done: Function) => { 633 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeEnormal(); 634 expect(result).assertEqual(0); 635 done(); 636 }); 637 638 /** 639 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_0700 640 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange007 641 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 642 * @tc.size : MediumTest 643 * @tc.type : Function 644 * @tc.level : Level 1 645 */ 646 it('testOHAvCapabilityGetEncoderComplexityRange007', 0, async (done: Function) => { 647 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeFnormal(); 648 expect(result).assertEqual(-1); 649 done(); 650 }); 651 652 /** 653 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_0800 654 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange008 655 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 656 * @tc.size : MediumTest 657 * @tc.type : Function 658 * @tc.level : Level 1 659 */ 660 it('testOHAvCapabilityGetEncoderComplexityRange008', 0, async (done: Function) => { 661 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeGnormal(); 662 expect(result).assertEqual(-1); 663 done(); 664 }); 665 666 /** 667 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_0900 668 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange009 669 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 670 * @tc.size : MediumTest 671 * @tc.type : Function 672 * @tc.level : Level 1 673 */ 674 it('testOHAvCapabilityGetEncoderComplexityRange009', 0, async (done: Function) => { 675 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeHnormal(); 676 expect(result).assertEqual(-1); 677 done(); 678 }); 679 680 /** 681 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_1000 682 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange010 683 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 684 * @tc.size : MediumTest 685 * @tc.type : Function 686 * @tc.level : Level 1 687 */ 688 it('testOHAvCapabilityGetEncoderComplexityRange010', 0, async (done: Function) => { 689 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeInormal(); 690 expect(result).assertEqual(-1); 691 done(); 692 }); 693 694 /** 695 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_1100 696 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange011 697 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 698 * @tc.size : MediumTest 699 * @tc.type : Function 700 * @tc.level : Level 1 701 */ 702 it('testOHAvCapabilityGetEncoderComplexityRange011', 0, async (done: Function) => { 703 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeJnormal(); 704 expect(result).assertEqual(0); 705 done(); 706 }); 707 708 /** 709 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_1200 710 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange012 711 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 712 * @tc.size : MediumTest 713 * @tc.type : Function 714 * @tc.level : Level 1 715 */ 716 it('testOHAvCapabilityGetEncoderComplexityRange012', 0, async (done: Function) => { 717 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeKnormal(); 718 expect(result).assertEqual(-1); 719 done(); 720 }); 721 722 /** 723 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_1300 724 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange013 725 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 726 * @tc.size : MediumTest 727 * @tc.type : Function 728 * @tc.level : Level 1 729 */ 730 it('testOHAvCapabilityGetEncoderComplexityRange013', 0, async (done: Function) => { 731 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeLnormal(); 732 expect(result).assertEqual(-1); 733 done(); 734 }); 735 736 /** 737 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_1400 738 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange014 739 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 740 * @tc.size : MediumTest 741 * @tc.type : Function 742 * @tc.level : Level 1 743 */ 744 it('testOHAvCapabilityGetEncoderComplexityRange014', 0, async (done: Function) => { 745 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeMnormal(); 746 expect(result).assertEqual(-1); 747 done(); 748 }); 749 750 /** 751 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_1500 752 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange015 753 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 754 * @tc.size : MediumTest 755 * @tc.type : Function 756 * @tc.level : Level 1 757 */ 758 it('testOHAvCapabilityGetEncoderComplexityRange015', 0, async (done: Function) => { 759 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeNnormal(); 760 expect(result).assertEqual(-1); 761 done(); 762 }); 763 764 /** 765 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_1600 766 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange016 767 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 768 * @tc.size : MediumTest 769 * @tc.type : Function 770 * @tc.level : Level 1 771 */ 772 it('testOHAvCapabilityGetEncoderComplexityRange016', 0, async (done: Function) => { 773 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeOnormal(); 774 expect(result).assertEqual(0); 775 done(); 776 }); 777 778 /** 779 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_1700 780 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange017 781 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 782 * @tc.size : MediumTest 783 * @tc.type : Function 784 * @tc.level : Level 1 785 */ 786 it('testOHAvCapabilityGetEncoderComplexityRange017', 0, async (done: Function) => { 787 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangePnormal(); 788 expect(result).assertEqual(-1); 789 done(); 790 }); 791 792 /** 793 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_1800 794 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange018 795 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 796 * @tc.size : MediumTest 797 * @tc.type : Function 798 * @tc.level : Level 1 799 */ 800 it('testOHAvCapabilityGetEncoderComplexityRange018', 0, async (done: Function) => { 801 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeQnormal(); 802 expect(result).assertEqual(-1); 803 done(); 804 }); 805 806 /** 807 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_1900 808 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange019 809 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 810 * @tc.size : MediumTest 811 * @tc.type : Function 812 * @tc.level : Level 1 813 */ 814 it('testOHAvCapabilityGetEncoderComplexityRange019', 0, async (done: Function) => { 815 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeRnormal(); 816 expect(result).assertEqual(-1); 817 done(); 818 }); 819 820 /** 821 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_2000 822 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange020 823 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 824 * @tc.size : MediumTest 825 * @tc.type : Function 826 * @tc.level : Level 1 827 */ 828 it('testOHAvCapabilityGetEncoderComplexityRange020', 0, async (done: Function) => { 829 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeSnormal(); 830 expect(result).assertEqual(-1); 831 done(); 832 }); 833 834 /** 835 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_2100 836 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange021 837 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 838 * @tc.size : MediumTest 839 * @tc.type : Function 840 * @tc.level : Level 1 841 */ 842 it('testOHAvCapabilityGetEncoderComplexityRange021', 0, async (done: Function) => { 843 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeTnormal(); 844 expect(result).assertEqual(0); 845 done(); 846 }); 847 848 /** 849 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_2200 850 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange022 851 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 852 * @tc.size : MediumTest 853 * @tc.type : Function 854 * @tc.level : Level 1 855 */ 856 it('testOHAvCapabilityGetEncoderComplexityRange022', 0, async (done: Function) => { 857 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeUnormal(); 858 expect(result).assertEqual(0); 859 done(); 860 }); 861 862 /** 863 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_2300 864 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange023 865 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 866 * @tc.size : MediumTest 867 * @tc.type : Function 868 * @tc.level : Level 1 869 */ 870 it('testOHAvCapabilityGetEncoderComplexityRange023', 0, async (done: Function) => { 871 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeVnormal(); 872 expect(result).assertEqual(0); 873 done(); 874 }); 875 876 /** 877 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_2400 878 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange024 879 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 880 * @tc.size : MediumTest 881 * @tc.type : Function 882 * @tc.level : Level 1 883 */ 884 it('testOHAvCapabilityGetEncoderComplexityRange024', 0, async (done: Function) => { 885 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeWnormal(); 886 expect(result).assertEqual(0); 887 done(); 888 }); 889 890 /** 891 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_2500 892 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange025 893 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 894 * @tc.size : MediumTest 895 * @tc.type : Function 896 * @tc.level : Level 1 897 */ 898 it('testOHAvCapabilityGetEncoderComplexityRange025', 0, async (done: Function) => { 899 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeXnormal(); 900 expect(result).assertEqual(0); 901 done(); 902 }); 903 904 /** 905 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_2600 906 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange026 907 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 908 * @tc.size : MediumTest 909 * @tc.type : Function 910 * @tc.level : Level 1 911 */ 912 it('testOHAvCapabilityGetEncoderComplexityRange026', 0, async (done: Function) => { 913 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeYnormal(); 914 expect(result).assertEqual(-1); 915 done(); 916 }); 917 918 /** 919 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_2700 920 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange027 921 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 922 * @tc.size : MediumTest 923 * @tc.type : Function 924 * @tc.level : Level 1 925 */ 926 it('testOHAvCapabilityGetEncoderComplexityRange027', 0, async (done: Function) => { 927 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeZnormal(); 928 expect(result).assertEqual(-1); 929 done(); 930 }); 931 932 /** 933 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_2800 934 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange028 935 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 936 * @tc.size : MediumTest 937 * @tc.type : Function 938 * @tc.level : Level 1 939 */ 940 it('testOHAvCapabilityGetEncoderComplexityRange028', 0, async (done: Function) => { 941 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeAAnormal(); 942 expect(result).assertEqual(-1); 943 done(); 944 }); 945 946 /** 947 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_2900 948 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange029 949 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 950 * @tc.size : MediumTest 951 * @tc.type : Function 952 * @tc.level : Level 1 953 */ 954 it('testOHAvCapabilityGetEncoderComplexityRange029', 0, async (done: Function) => { 955 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeABnormal(); 956 expect(result).assertEqual(-1); 957 done(); 958 }); 959 960 /** 961 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_3000 962 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange030 963 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 964 * @tc.size : MediumTest 965 * @tc.type : Function 966 * @tc.level : Level 1 967 */ 968 it('testOHAvCapabilityGetEncoderComplexityRange030', 0, async (done: Function) => { 969 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeACnormal(); 970 expect(result).assertEqual(-1); 971 done(); 972 }); 973 974 /** 975 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_3100 976 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange031 977 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 978 * @tc.size : MediumTest 979 * @tc.type : Function 980 * @tc.level : Level 1 981 */ 982 it('testOHAvCapabilityGetEncoderComplexityRange031', 0, async (done: Function) => { 983 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeADnormal(); 984 expect(result).assertEqual(-1); 985 done(); 986 }); 987 988 /** 989 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_3200 990 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange032 991 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 992 * @tc.size : MediumTest 993 * @tc.type : Function 994 * @tc.level : Level 1 995 */ 996 it('testOHAvCapabilityGetEncoderComplexityRange032', 0, async (done: Function) => { 997 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeAEnormal(); 998 expect(result).assertEqual(0); 999 done(); 1000 }); 1001 1002 /** 1003 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_3300 1004 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange033 1005 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 1006 * @tc.size : MediumTest 1007 * @tc.type : Function 1008 * @tc.level : Level 1 1009 */ 1010 it('testOHAvCapabilityGetEncoderComplexityRange033', 0, async (done: Function) => { 1011 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeAFnormal(); 1012 expect(result).assertEqual(0); 1013 done(); 1014 }); 1015 1016 /** 1017 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_3400 1018 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange034 1019 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 1020 * @tc.size : MediumTest 1021 * @tc.type : Function 1022 * @tc.level : Level 1 1023 */ 1024 it('testOHAvCapabilityGetEncoderComplexityRange034', 0, async (done: Function) => { 1025 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeAGnormal(); 1026 expect(result).assertEqual(-1); 1027 done(); 1028 }); 1029 1030 /** 1031 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_3500 1032 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange035 1033 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 1034 * @tc.size : MediumTest 1035 * @tc.type : Function 1036 * @tc.level : Level 1 1037 */ 1038 it('testOHAvCapabilityGetEncoderComplexityRange035', 0, async (done: Function) => { 1039 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeAHnormal(); 1040 expect(result).assertEqual(0); 1041 done(); 1042 }); 1043 1044 /** 1045 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_3600 1046 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange036 1047 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 1048 * @tc.size : MediumTest 1049 * @tc.type : Function 1050 * @tc.level : Level 1 1051 */ 1052 it('testOHAvCapabilityGetEncoderComplexityRange036', 0, async (done: Function) => { 1053 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeAInormal(); 1054 expect(result).assertEqual(-1); 1055 done(); 1056 }); 1057 1058 /** 1059 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_3700 1060 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange037 1061 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 1062 * @tc.size : MediumTest 1063 * @tc.type : Function 1064 * @tc.level : Level 1 1065 */ 1066 it('testOHAvCapabilityGetEncoderComplexityRange037', 0, async (done: Function) => { 1067 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeAJnormal(); 1068 expect(result).assertEqual(-1); 1069 done(); 1070 }); 1071 1072 /** 1073 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_3800 1074 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange038 1075 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 1076 * @tc.size : MediumTest 1077 * @tc.type : Function 1078 * @tc.level : Level 1 1079 */ 1080 it('testOHAvCapabilityGetEncoderComplexityRange038', 0, async (done: Function) => { 1081 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeAKnormal(); 1082 expect(result).assertEqual(-1); 1083 done(); 1084 }); 1085 1086 /** 1087 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_3900 1088 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange039 1089 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 1090 * @tc.size : MediumTest 1091 * @tc.type : Function 1092 * @tc.level : Level 1 1093 */ 1094 it('testOHAvCapabilityGetEncoderComplexityRange039', 0, async (done: Function) => { 1095 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeALnormal(); 1096 expect(result).assertEqual(-1); 1097 done(); 1098 }); 1099 1100 /** 1101 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_4000 1102 * @tc.name : testOHAvCapabilityGetEncoderComplexityRange040 1103 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 1104 * @tc.size : MediumTest 1105 * @tc.type : Function 1106 * @tc.level : Level 1 1107 */ 1108 it('testOHAvCapabilityGetEncoderComplexityRange040', 0, async (done: Function) => { 1109 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetEncoderComplexityRangeAMnormal(); 1110 expect(result).assertEqual(-1); 1111 done(); 1112 }); 1113 1114 /** 1115 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_0200 1116 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates002 1117 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1118 * @tc.size : MediumTest 1119 * @tc.type : Function 1120 * @tc.level : Level 1 1121 */ 1122 it('testOHAvCapabilityGetAudioSupportedSampleRates002', 0, async (done: Function) => { 1123 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesAbnormal(); 1124 expect(result).assertEqual(0); 1125 done(); 1126 }); 1127 1128 /** 1129 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_0300 1130 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates003 1131 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1132 * @tc.size : MediumTest 1133 * @tc.type : Function 1134 * @tc.level : Level 1 1135 */ 1136 it('testOHAvCapabilityGetAudioSupportedSampleRates003', 0, async (done: Function) => { 1137 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesAnormal(); 1138 expect(result).assertEqual(0); 1139 done(); 1140 }); 1141 1142 /** 1143 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_0400 1144 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates004 1145 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1146 * @tc.size : MediumTest 1147 * @tc.type : Function 1148 * @tc.level : Level 1 1149 */ 1150 it('testOHAvCapabilityGetAudioSupportedSampleRates004', 0, async (done: Function) => { 1151 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesBnormal(); 1152 expect(result).assertEqual(-1); 1153 done(); 1154 }); 1155 1156 /** 1157 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_0500 1158 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates005 1159 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1160 * @tc.size : MediumTest 1161 * @tc.type : Function 1162 * @tc.level : Level 1 1163 */ 1164 it('testOHAvCapabilityGetAudioSupportedSampleRates005', 0, async (done: Function) => { 1165 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesCnormal(); 1166 expect(result).assertEqual(0); 1167 done(); 1168 }); 1169 1170 /** 1171 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_0600 1172 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates006 1173 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1174 * @tc.size : MediumTest 1175 * @tc.type : Function 1176 * @tc.level : Level 1 1177 */ 1178 it('testOHAvCapabilityGetAudioSupportedSampleRates006', 0, async (done: Function) => { 1179 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesDnormal(); 1180 expect(result).assertEqual(0); 1181 done(); 1182 }); 1183 1184 /** 1185 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_0700 1186 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates007 1187 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1188 * @tc.size : MediumTest 1189 * @tc.type : Function 1190 * @tc.level : Level 1 1191 */ 1192 it('testOHAvCapabilityGetAudioSupportedSampleRates007', 0, async (done: Function) => { 1193 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesEnormal(); 1194 expect(result).assertEqual(0); 1195 done(); 1196 }); 1197 1198 /** 1199 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_0800 1200 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates008 1201 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1202 * @tc.size : MediumTest 1203 * @tc.type : Function 1204 * @tc.level : Level 1 1205 */ 1206 it('testOHAvCapabilityGetAudioSupportedSampleRates008', 0, async (done: Function) => { 1207 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesFnormal(); 1208 expect(result).assertEqual(0); 1209 done(); 1210 }); 1211 1212 /** 1213 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_0900 1214 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates009 1215 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1216 * @tc.size : MediumTest 1217 * @tc.type : Function 1218 * @tc.level : Level 1 1219 */ 1220 it('testOHAvCapabilityGetAudioSupportedSampleRates009', 0, async (done: Function) => { 1221 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesGnormal(); 1222 expect(result).assertEqual(0); 1223 done(); 1224 }); 1225 1226 /** 1227 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_1000 1228 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates010 1229 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1230 * @tc.size : MediumTest 1231 * @tc.type : Function 1232 * @tc.level : Level 1 1233 */ 1234 it('testOHAvCapabilityGetAudioSupportedSampleRates010', 0, async (done: Function) => { 1235 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesHnormal(); 1236 expect(result).assertEqual(-1); 1237 done(); 1238 }); 1239 1240 /** 1241 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_1100 1242 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates011 1243 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1244 * @tc.size : MediumTest 1245 * @tc.type : Function 1246 * @tc.level : Level 1 1247 */ 1248 it('testOHAvCapabilityGetAudioSupportedSampleRates011', 0, async (done: Function) => { 1249 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesInormal(); 1250 expect(result).assertEqual(-1); 1251 done(); 1252 }); 1253 1254 /** 1255 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_1200 1256 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates012 1257 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1258 * @tc.size : MediumTest 1259 * @tc.type : Function 1260 * @tc.level : Level 1 1261 */ 1262 it('testOHAvCapabilityGetAudioSupportedSampleRates012', 0, async (done: Function) => { 1263 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesGnormal(); 1264 expect(result).assertEqual(0); 1265 done(); 1266 }); 1267 1268 /** 1269 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_1300 1270 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates013 1271 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1272 * @tc.size : MediumTest 1273 * @tc.type : Function 1274 * @tc.level : Level 1 1275 */ 1276 it('testOHAvCapabilityGetAudioSupportedSampleRates013', 0, async (done: Function) => { 1277 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesKnormal(); 1278 expect(result).assertEqual(-1); 1279 done(); 1280 }); 1281 1282 /** 1283 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_1400 1284 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates014 1285 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1286 * @tc.size : MediumTest 1287 * @tc.type : Function 1288 * @tc.level : Level 1 1289 */ 1290 it('testOHAvCapabilityGetAudioSupportedSampleRates014', 0, async (done: Function) => { 1291 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesLnormal(); 1292 expect(result).assertEqual(-1); 1293 done(); 1294 }); 1295 1296 /** 1297 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_1500 1298 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates015 1299 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1300 * @tc.size : MediumTest 1301 * @tc.type : Function 1302 * @tc.level : Level 1 1303 */ 1304 it('testOHAvCapabilityGetAudioSupportedSampleRates015', 0, async (done: Function) => { 1305 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesMnormal(); 1306 expect(result).assertEqual(-1); 1307 done(); 1308 }); 1309 1310 /** 1311 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_1600 1312 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates016 1313 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1314 * @tc.size : MediumTest 1315 * @tc.type : Function 1316 * @tc.level : Level 1 1317 */ 1318 it('testOHAvCapabilityGetAudioSupportedSampleRates016', 0, async (done: Function) => { 1319 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesNnormal(); 1320 expect(result).assertEqual(-1); 1321 done(); 1322 }); 1323 1324 /** 1325 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_1700 1326 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates017 1327 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1328 * @tc.size : MediumTest 1329 * @tc.type : Function 1330 * @tc.level : Level 1 1331 */ 1332 it('testOHAvCapabilityGetAudioSupportedSampleRates017', 0, async (done: Function) => { 1333 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesOnormal(); 1334 expect(result).assertEqual(-1); 1335 done(); 1336 }); 1337 1338 /** 1339 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_1800 1340 * @tc.name : testOHAvCapabilityGetAudioSupportedSampleRates018 1341 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 1342 * @tc.size : MediumTest 1343 * @tc.type : Function 1344 * @tc.level : Level 1 1345 */ 1346 it('testOHAvCapabilityGetAudioSupportedSampleRates018', 0, async (done: Function) => { 1347 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioSupportedSampleRatesPnormal(); 1348 expect(result).assertEqual(-1); 1349 done(); 1350 }); 1351 1352 /** 1353 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_0200 1354 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange002 1355 * @tc.desc : test OH_AVCapafbility_GetAudioChannelCountRange 1356 * @tc.size : MediumTest 1357 * @tc.type : Function 1358 * @tc.level : Level 1 1359 */ 1360 it('testOHAvCapabilityGetAudioChannelCountRange002', 0, async (done: Function) => { 1361 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeAnormal(); 1362 expect(result).assertEqual(0); 1363 done(); 1364 }); 1365 1366 /** 1367 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_0300 1368 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange003 1369 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1370 * @tc.size : MediumTest 1371 * @tc.type : Function 1372 * @tc.level : Level 1 1373 */ 1374 it('testOHAvCapabilityGetAudioChannelCountRange003', 0, async (done: Function) => { 1375 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeBnormal(); 1376 expect(result).assertEqual(0); 1377 done(); 1378 }); 1379 1380 /** 1381 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_0400 1382 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange004 1383 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1384 * @tc.size : MediumTest 1385 * @tc.type : Function 1386 * @tc.level : Level 1 1387 */ 1388 it('testOHAvCapabilityGetAudioChannelCountRange004', 0, async (done: Function) => { 1389 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeCnormal(); 1390 expect(result).assertEqual(0); 1391 done(); 1392 }); 1393 1394 /** 1395 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_0500 1396 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange005 1397 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1398 * @tc.size : MediumTest 1399 * @tc.type : Function 1400 * @tc.level : Level 1 1401 */ 1402 it('testOHAvCapabilityGetAudioChannelCountRange005', 0, async (done: Function) => { 1403 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeDnormal(); 1404 expect(result).assertEqual(0); 1405 done(); 1406 }); 1407 1408 /** 1409 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_0600 1410 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange006 1411 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1412 * @tc.size : MediumTest 1413 * @tc.type : Function 1414 * @tc.level : Level 1 1415 */ 1416 it('testOHAvCapabilityGetAudioChannelCountRange006', 0, async (done: Function) => { 1417 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeEnormal(); 1418 expect(result).assertEqual(0); 1419 done(); 1420 }); 1421 1422 /** 1423 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_0700 1424 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange007 1425 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1426 * @tc.size : MediumTest 1427 * @tc.type : Function 1428 * @tc.level : Level 1 1429 */ 1430 it('testOHAvCapabilityGetAudioChannelCountRange007', 0, async (done: Function) => { 1431 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeFnormal(); 1432 expect(result).assertEqual(-1); 1433 done(); 1434 }); 1435 1436 /** 1437 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_0800 1438 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange008 1439 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1440 * @tc.size : MediumTest 1441 * @tc.type : Function 1442 * @tc.level : Level 1 1443 */ 1444 it('testOHAvCapabilityGetAudioChannelCountRange008', 0, async (done: Function) => { 1445 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeGnormal(); 1446 expect(result).assertEqual(-1); 1447 done(); 1448 }); 1449 1450 /** 1451 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_0900 1452 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange009 1453 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1454 * @tc.size : MediumTest 1455 * @tc.type : Function 1456 * @tc.level : Level 1 1457 */ 1458 it('testOHAvCapabilityGetAudioChannelCountRange009', 0, async (done: Function) => { 1459 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeHnormal(); 1460 expect(result).assertEqual(-1); 1461 done(); 1462 }); 1463 1464 /** 1465 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_1000 1466 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange010 1467 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1468 * @tc.size : MediumTest 1469 * @tc.type : Function 1470 * @tc.level : Level 1 1471 */ 1472 it('testOHAvCapabilityGetAudioChannelCountRange010', 0, async (done: Function) => { 1473 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeInormal(); 1474 expect(result).assertEqual(-1); 1475 done(); 1476 }); 1477 1478 /** 1479 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_1100 1480 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange011 1481 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1482 * @tc.size : MediumTest 1483 * @tc.type : Function 1484 * @tc.level : Level 1 1485 */ 1486 it('testOHAvCapabilityGetAudioChannelCountRange011', 0, async (done: Function) => { 1487 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeJnormal(); 1488 expect(result).assertEqual(-1); 1489 done(); 1490 }); 1491 1492 /** 1493 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_1200 1494 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange012 1495 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1496 * @tc.size : MediumTest 1497 * @tc.type : Function 1498 * @tc.level : Level 1 1499 */ 1500 it('testOHAvCapabilityGetAudioChannelCountRange012', 0, async (done: Function) => { 1501 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeKnormal(); 1502 expect(result).assertEqual(0); 1503 done(); 1504 }); 1505 1506 /** 1507 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_1300 1508 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange013 1509 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1510 * @tc.size : MediumTest 1511 * @tc.type : Function 1512 * @tc.level : Level 1 1513 */ 1514 it('testOHAvCapabilityGetAudioChannelCountRange013', 0, async (done: Function) => { 1515 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeLnormal(); 1516 expect(result).assertEqual(0); 1517 done(); 1518 }); 1519 1520 /** 1521 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_1400 1522 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange014 1523 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1524 * @tc.size : MediumTest 1525 * @tc.type : Function 1526 * @tc.level : Level 1 1527 */ 1528 it('testOHAvCapabilityGetAudioChannelCountRange014', 0, async (done: Function) => { 1529 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeMnormal(); 1530 expect(result).assertEqual(0); 1531 done(); 1532 }); 1533 1534 /** 1535 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_1500 1536 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange015 1537 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1538 * @tc.size : MediumTest 1539 * @tc.type : Function 1540 * @tc.level : Level 1 1541 */ 1542 it('testOHAvCapabilityGetAudioChannelCountRange015', 0, async (done: Function) => { 1543 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeNnormal(); 1544 expect(result).assertEqual(0); 1545 done(); 1546 }); 1547 1548 /** 1549 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_1600 1550 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange016 1551 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1552 * @tc.size : MediumTest 1553 * @tc.type : Function 1554 * @tc.level : Level 1 1555 */ 1556 it('testOHAvCapabilityGetAudioChannelCountRange016', 0, async (done: Function) => { 1557 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeOnormal(); 1558 expect(result).assertEqual(0); 1559 done(); 1560 }); 1561 1562 /** 1563 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_1700 1564 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange017 1565 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1566 * @tc.size : MediumTest 1567 * @tc.type : Function 1568 * @tc.level : Level 1 1569 */ 1570 it('testOHAvCapabilityGetAudioChannelCountRange017', 0, async (done: Function) => { 1571 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangePnormal(); 1572 expect(result).assertEqual(-1); 1573 done(); 1574 }); 1575 1576 /** 1577 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_1800 1578 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange018 1579 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1580 * @tc.size : MediumTest 1581 * @tc.type : Function 1582 * @tc.level : Level 1 1583 */ 1584 it('testOHAvCapabilityGetAudioChannelCountRange018', 0, async (done: Function) => { 1585 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeQnormal(); 1586 expect(result).assertEqual(-1); 1587 done(); 1588 }); 1589 1590 /** 1591 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_1900 1592 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange019 1593 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1594 * @tc.size : MediumTest 1595 * @tc.type : Function 1596 * @tc.level : Level 1 1597 */ 1598 it('testOHAvCapabilityGetAudioChannelCountRange019', 0, async (done: Function) => { 1599 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeRnormal(); 1600 expect(result).assertEqual(-1); 1601 done(); 1602 }); 1603 1604 /** 1605 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_2000 1606 * @tc.name : testOHAvCapabilityGetAudioChannelCountRange020 1607 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 1608 * @tc.size : MediumTest 1609 * @tc.type : Function 1610 * @tc.level : Level 1 1611 */ 1612 it('testOHAvCapabilityGetAudioChannelCountRange020', 0, async (done: Function) => { 1613 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetAudioChannelCountRangeSnormal(); 1614 expect(result).assertEqual(-1); 1615 done(); 1616 }); 1617 1618 /** 1619 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_0200 1620 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment002 1621 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1622 * @tc.size : MediumTest 1623 * @tc.type : Function 1624 * @tc.level : Level 1 1625 */ 1626 it('testOHAvCapabilityGetVideoWidthAlignment002', 0, async (done: Function) => { 1627 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentAnormal(); 1628 expect(result).assertEqual(-1); 1629 done(); 1630 }); 1631 1632 /** 1633 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_0300 1634 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment003 1635 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1636 * @tc.size : MediumTest 1637 * @tc.type : Function 1638 * @tc.level : Level 1 1639 */ 1640 it('testOHAvCapabilityGetVideoWidthAlignment003', 0, async (done: Function) => { 1641 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentBnormal(); 1642 expect(result).assertEqual(0); 1643 done(); 1644 }); 1645 1646 /** 1647 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_0400 1648 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment004 1649 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1650 * @tc.size : MediumTest 1651 * @tc.type : Function 1652 * @tc.level : Level 1 1653 */ 1654 it('testOHAvCapabilityGetVideoWidthAlignment004', 0, async (done: Function) => { 1655 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentCnormal(); 1656 expect(result).assertEqual(0); 1657 done(); 1658 }); 1659 1660 /** 1661 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_0500 1662 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment005 1663 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1664 * @tc.size : MediumTest 1665 * @tc.type : Function 1666 * @tc.level : Level 1 1667 */ 1668 it('testOHAvCapabilityGetVideoWidthAlignment005', 0, async (done: Function) => { 1669 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentDnormal(); 1670 expect(result).assertEqual(-1); 1671 done(); 1672 }); 1673 1674 /** 1675 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_0600 1676 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment006 1677 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1678 * @tc.size : MediumTest 1679 * @tc.type : Function 1680 * @tc.level : Level 1 1681 */ 1682 it('testOHAvCapabilityGetVideoWidthAlignment006', 0, async (done: Function) => { 1683 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentEnormal(); 1684 expect(result).assertEqual(0); 1685 done(); 1686 }); 1687 1688 /** 1689 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_0700 1690 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment007 1691 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1692 * @tc.size : MediumTest 1693 * @tc.type : Function 1694 * @tc.level : Level 1 1695 */ 1696 it('testOHAvCapabilityGetVideoWidthAlignment007', 0, async (done: Function) => { 1697 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentFnormal(); 1698 expect(result).assertEqual(0); 1699 done(); 1700 }); 1701 1702 /** 1703 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_0800 1704 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment008 1705 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1706 * @tc.size : MediumTest 1707 * @tc.type : Function 1708 * @tc.level : Level 1 1709 */ 1710 it('testOHAvCapabilityGetVideoWidthAlignment008', 0, async (done: Function) => { 1711 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentGnormal(); 1712 expect(result).assertEqual(-1); 1713 done(); 1714 }); 1715 1716 /** 1717 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_0900 1718 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment009 1719 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1720 * @tc.size : MediumTest 1721 * @tc.type : Function 1722 * @tc.level : Level 1 1723 */ 1724 it('testOHAvCapabilityGetVideoWidthAlignment009', 0, async (done: Function) => { 1725 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentHnormal(); 1726 expect(result).assertEqual(-1); 1727 done(); 1728 }); 1729 1730 /** 1731 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_1000 1732 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment010 1733 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1734 * @tc.size : MediumTest 1735 * @tc.type : Function 1736 * @tc.level : Level 1 1737 */ 1738 it('testOHAvCapabilityGetVideoWidthAlignment010', 0, async (done: Function) => { 1739 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentInormal(); 1740 expect(result).assertEqual(-1); 1741 done(); 1742 }); 1743 1744 /** 1745 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_1100 1746 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment011 1747 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1748 * @tc.size : MediumTest 1749 * @tc.type : Function 1750 * @tc.level : Level 1 1751 */ 1752 it('testOHAvCapabilityGetVideoWidthAlignment011', 0, async (done: Function) => { 1753 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentJnormal(); 1754 expect(result).assertEqual(-1); 1755 done(); 1756 }); 1757 1758 /** 1759 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_1200 1760 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment012 1761 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1762 * @tc.size : MediumTest 1763 * @tc.type : Function 1764 * @tc.level : Level 1 1765 */ 1766 it('testOHAvCapabilityGetVideoWidthAlignment012', 0, async (done: Function) => { 1767 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentKnormal(); 1768 expect(result).assertEqual(-1); 1769 done(); 1770 }); 1771 1772 /** 1773 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_1300 1774 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment013 1775 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1776 * @tc.size : MediumTest 1777 * @tc.type : Function 1778 * @tc.level : Level 1 1779 */ 1780 it('testOHAvCapabilityGetVideoWidthAlignment013', 0, async (done: Function) => { 1781 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentLnormal(); 1782 expect(result).assertEqual(0); 1783 done(); 1784 }); 1785 1786 /** 1787 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_1400 1788 * @tc.name : testOHAvCapabilityGetVideoWidthAlignment014 1789 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 1790 * @tc.size : MediumTest 1791 * @tc.type : Function 1792 * @tc.level : Level 1 1793 */ 1794 it('testOHAvCapabilityGetVideoWidthAlignment014', 0, async (done: Function) => { 1795 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoWidthAlignmentMnormal(); 1796 expect(result).assertEqual(0); 1797 done(); 1798 }); 1799 1800 /** 1801 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_0200 1802 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment002 1803 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1804 * @tc.size : MediumTest 1805 * @tc.type : Function 1806 * @tc.level : Level 1 1807 */ 1808 it('testOhAvCapabilityGetVideoHeightAlignment002', 0, async (done: Function) => { 1809 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentAnormal(); 1810 expect(result).assertEqual(-1); 1811 done(); 1812 }); 1813 1814 /** 1815 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_0300 1816 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment003 1817 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1818 * @tc.size : MediumTest 1819 * @tc.type : Function 1820 * @tc.level : Level 1 1821 */ 1822 it('testOhAvCapabilityGetVideoHeightAlignment003', 0, async (done: Function) => { 1823 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentBnormal(); 1824 expect(result).assertEqual(0); 1825 done(); 1826 }); 1827 1828 /** 1829 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_0400 1830 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment004 1831 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1832 * @tc.size : MediumTest 1833 * @tc.type : Function 1834 * @tc.level : Level 1 1835 */ 1836 it('testOhAvCapabilityGetVideoHeightAlignment004', 0, async (done: Function) => { 1837 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentCnormal(); 1838 expect(result).assertEqual(0); 1839 done(); 1840 }); 1841 1842 /** 1843 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_0500 1844 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment005 1845 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1846 * @tc.size : MediumTest 1847 * @tc.type : Function 1848 * @tc.level : Level 1 1849 */ 1850 it('testOhAvCapabilityGetVideoHeightAlignment005', 0, async (done: Function) => { 1851 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentDnormal(); 1852 expect(result).assertEqual(-1); 1853 done(); 1854 }); 1855 1856 /** 1857 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_0600 1858 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment006 1859 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1860 * @tc.size : MediumTest 1861 * @tc.type : Function 1862 * @tc.level : Level 1 1863 */ 1864 it('testOhAvCapabilityGetVideoHeightAlignment006', 0, async (done: Function) => { 1865 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentEnormal(); 1866 expect(result).assertEqual(0); 1867 done(); 1868 }); 1869 1870 /** 1871 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_0700 1872 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment007 1873 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1874 * @tc.size : MediumTest 1875 * @tc.type : Function 1876 * @tc.level : Level 1 1877 */ 1878 it('testOhAvCapabilityGetVideoHeightAlignment007', 0, async (done: Function) => { 1879 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentFnormal(); 1880 expect(result).assertEqual(0); 1881 done(); 1882 }); 1883 1884 /** 1885 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_0800 1886 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment008 1887 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1888 * @tc.size : MediumTest 1889 * @tc.type : Function 1890 * @tc.level : Level 1 1891 */ 1892 it('testOhAvCapabilityGetVideoHeightAlignment008', 0, async (done: Function) => { 1893 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentGnormal(); 1894 expect(result).assertEqual(-1); 1895 done(); 1896 }); 1897 1898 /** 1899 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_0900 1900 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment009 1901 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1902 * @tc.size : MediumTest 1903 * @tc.type : Function 1904 * @tc.level : Level 1 1905 */ 1906 it('testOhAvCapabilityGetVideoHeightAlignment009', 0, async (done: Function) => { 1907 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentHnormal(); 1908 expect(result).assertEqual(-1); 1909 done(); 1910 }); 1911 1912 /** 1913 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_1000 1914 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment010 1915 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1916 * @tc.size : MediumTest 1917 * @tc.type : Function 1918 * @tc.level : Level 1 1919 */ 1920 it('testOhAvCapabilityGetVideoHeightAlignment010', 0, async (done: Function) => { 1921 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentInormal(); 1922 expect(result).assertEqual(-1); 1923 done(); 1924 }); 1925 1926 /** 1927 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_1100 1928 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment011 1929 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1930 * @tc.size : MediumTest 1931 * @tc.type : Function 1932 * @tc.level : Level 1 1933 */ 1934 it('testOhAvCapabilityGetVideoHeightAlignment011', 0, async (done: Function) => { 1935 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentJnormal(); 1936 expect(result).assertEqual(-1); 1937 done(); 1938 }); 1939 1940 /** 1941 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_1200 1942 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment012 1943 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1944 * @tc.size : MediumTest 1945 * @tc.type : Function 1946 * @tc.level : Level 1 1947 */ 1948 it('testOhAvCapabilityGetVideoHeightAlignment012', 0, async (done: Function) => { 1949 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentKnormal(); 1950 expect(result).assertEqual(-1); 1951 done(); 1952 }); 1953 1954 /** 1955 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_1300 1956 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment013 1957 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1958 * @tc.size : MediumTest 1959 * @tc.type : Function 1960 * @tc.level : Level 1 1961 */ 1962 it('testOhAvCapabilityGetVideoHeightAlignment013', 0, async (done: Function) => { 1963 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentLnormal(); 1964 expect(result).assertEqual(0); 1965 done(); 1966 }); 1967 1968 /** 1969 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_1400 1970 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment014 1971 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 1972 * @tc.size : MediumTest 1973 * @tc.type : Function 1974 * @tc.level : Level 1 1975 */ 1976 it('testOhAvCapabilityGetVideoHeightAlignment014', 0, async (done: Function) => { 1977 let result: number = mediacodecbasexdlndk.oHAvCapabilityGetVideoHeightAlignmentMnormal(); 1978 expect(result).assertEqual(0); 1979 done(); 1980 }); 1981 1982 /** 1983 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERQUALITYRANGE_0100 1984 * @tc.name : testOhAvCapabilityGetEncoderQualityRange001 1985 * @tc.desc : test OH_AVCapability_GetEncoderQualityRange 1986 * @tc.size : MediumTest 1987 * @tc.type : Function 1988 * @tc.level : Level 1 1989 */ 1990 it('testOhAvCapabilityGetEncoderQualityRange001', 0, async (done: Function) => { 1991 expect(mediacodecbasexdlndk.OH_AVCapability_GetEncoderQualityRange()).assertEqual(0); 1992 done(); 1993 }); 1994 1995 /** 1996 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETENCODERCOMPLEXITYRANGE_0100 1997 * @tc.name : testOhAvCapabilityGetEncoderComplexityRange001 1998 * @tc.desc : test OH_AVCapability_GetEncoderComplexityRange 1999 * @tc.size : MediumTest 2000 * @tc.type : Function 2001 * @tc.level : Level 1 2002 */ 2003 it('testOhAvCapabilityGetEncoderComplexityRange001', 0, async (done: Function) => { 2004 expect(mediacodecbasexdlndk.OH_AVCapability_GetEncoderComplexityRange()).assertEqual(0); 2005 done(); 2006 }); 2007 2008 /** 2009 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOSUPPORTEDSAMPLERATES_0100 2010 * @tc.name : testOhAvCapabilityGetAudioSupportedSampleRates001 2011 * @tc.desc : test OH_AVCapability_GetAudioSupportedSampleRates 2012 * @tc.size : MediumTest 2013 * @tc.type : Function 2014 * @tc.level : Level 1 2015 */ 2016 it('testOhAvCapabilityGetAudioSupportedSampleRates001', 0, async (done: Function) => { 2017 expect(mediacodecbasexdlndk.OH_AVCapability_GetAudioSupportedSampleRates()).assertEqual(0); 2018 done(); 2019 }); 2020 2021 /** 2022 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETAUDIOCHANNELCOUNTRANGE_0100 2023 * @tc.name : testOhAvCapabilityGetAudioChannelCountRange001 2024 * @tc.desc : test OH_AVCapability_GetAudioChannelCountRange 2025 * @tc.size : MediumTest 2026 * @tc.type : Function 2027 * @tc.level : Level 1 2028 */ 2029 it('testOhAvCapabilityGetAudioChannelCountRange001', 0, async (done: Function) => { 2030 expect(mediacodecbasexdlndk.OH_AVCapability_GetAudioChannelCountRange()).assertEqual(0); 2031 done(); 2032 }); 2033 2034 /** 2035 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHALIGNMENT_0100 2036 * @tc.name : testOhAvCapabilityGetVideoWidthAlignment001 2037 * @tc.desc : test OH_AVCapability_GetVideoWidthAlignment 2038 * @tc.size : MediumTest 2039 * @tc.type : Function 2040 * @tc.level : Level 1 2041 */ 2042 it('testOhAvCapabilityGetVideoWidthAlignment001', 0, async (done: Function) => { 2043 expect(mediacodecbasexdlndk.OH_AVCapability_GetVideoWidthAlignment()).assertEqual(0); 2044 done(); 2045 }); 2046 2047 /** 2048 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTALIGNMENT_0100 2049 * @tc.name : testOhAvCapabilityGetVideoHeightAlignment001 2050 * @tc.desc : test OH_AVCapability_GetVideoHeightAlignment 2051 * @tc.size : MediumTest 2052 * @tc.type : Function 2053 * @tc.level : Level 1 2054 */ 2055 it('testOhAvCapabilityGetVideoHeightAlignment001', 0, async (done: Function) => { 2056 expect(mediacodecbasexdlndk.OH_AVCapability_GetVideoHeightAlignment()).assertEqual(0); 2057 done(); 2058 }); 2059 2060 /** 2061 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_AVCAPABILITY_OH_AVCODEC_GETCAPABILITY_0100 2062 * @tc.name : testOhAvCodecGetCapability001 2063 * @tc.desc : test OH_AVCodec_GetCapability 2064 * @tc.size : MediumTest 2065 * @tc.type : Function 2066 * @tc.level : Level 1 2067 */ 2068 it('testOhAvCodecGetCapability001', 0, async (done: Function) => { 2069 expect(mediacodecbasexdlndk.OH_AVCodec_GetCapability()).assertEqual(0); 2070 done(); 2071 }); 2072 2073 /** 2074 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCODEC_GETCAPABILITYBYCATEGORY_0100 2075 * @tc.name : testOhAvCodecGetCapabilityByCategory001 2076 * @tc.desc : test OH_AVCodec_GetCapabilityByCategory 2077 * @tc.size : MediumTest 2078 * @tc.type : Function 2079 * @tc.level : Level 1 2080 */ 2081 it('testOhAvCodecGetCapabilityByCategory001', 0, async (done: Function) => { 2082 expect(mediacodecbasexdlndk.OH_AVCodec_GetCapabilityByCategory()).assertEqual(0); 2083 done(); 2084 }); 2085 2086 /** 2087 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOWIDTHRANGE_0100 2088 * @tc.name : testOhAvCapabilityGetVideoWidthRange001 2089 * @tc.desc : test OH_AVCapability_GetVideoWidthRange 2090 * @tc.size : MediumTest 2091 * @tc.type : Function 2092 * @tc.level : Level 1 2093 */ 2094 it('testOhAvCapabilityGetVideoWidthRange001', 0, async (done: Function) => { 2095 expect(mediacodecbasexdlndk.OH_AVCapability_GetVideoWidthRange()).assertEqual(0); 2096 done(); 2097 }); 2098 2099 /** 2100 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOHEIGHTRANGE_0100 2101 * @tc.name : testOhAvCapabilityGetVideoHeightRange001 2102 * @tc.desc : test OH_AVCapability_GetVideoHeightRange 2103 * @tc.size : MediumTest 2104 * @tc.type : Function 2105 * @tc.level : Level 1 2106 */ 2107 it('testOhAvCapabilityGetVideoHeightRange001', 0, async (done: Function) => { 2108 expect(mediacodecbasexdlndk.OH_AVCapability_GetVideoHeightRange()).assertEqual(0); 2109 done(); 2110 }); 2111 2112 /** 2113 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_ISVIDEOSIZESUPPORTED_0100 2114 * @tc.name : testOhAvCapabilityIsVideoSizeSupported001 2115 * @tc.desc : test OH_AVCapability_IsVideoSizeSupported 2116 * @tc.size : MediumTest 2117 * @tc.type : Function 2118 * @tc.level : Level 1 2119 */ 2120 it('testOhAvCapabilityIsVideoSizeSupported001', 0, async (done: Function) => { 2121 expect(mediacodecbasexdlndk.OH_AVCapability_IsVideoSizeSupported()).assertEqual(0); 2122 done(); 2123 }); 2124 2125 /** 2126 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOFRAMERATERANGE_0100 2127 * @tc.name : testOhAvCapabilityGetVideoFrameRateRange001 2128 * @tc.desc : test OH_AVCapability_GetVideoFrameRateRange 2129 * @tc.size : MediumTest 2130 * @tc.type : Function 2131 * @tc.level : Level 1 2132 */ 2133 it('testOhAvCapabilityGetVideoFrameRateRange001', 0, async (done: Function) => { 2134 expect(mediacodecbasexdlndk.OH_AVCapability_GetVideoFrameRateRange()).assertEqual(0); 2135 done(); 2136 }); 2137 2138 /** 2139 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOFRAMERATERANGEFORSIZE_0100 2140 * @tc.name : testOhAvCapabilityGetVideoFrameRateRangeForSize001 2141 * @tc.desc : test OH_AVCapability_GetVideoFrameRateRangeForSize 2142 * @tc.size : MediumTest 2143 * @tc.type : Function 2144 * @tc.level : Level 1 2145 */ 2146 it('testOhAvCapabilityGetVideoFrameRateRangeForSize001', 0, async (done: Function) => { 2147 expect(mediacodecbasexdlndk.OH_AVCapability_GetVideoFrameRateRangeForSize()).assertEqual(0); 2148 done(); 2149 }); 2150 2151 /** 2152 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_AREVIDEOSIZEANDFRAMERATESUPPORTED_0100 2153 * @tc.name : testOhAvCapabilityAreVideoSizeAndFrameRateSupported001 2154 * @tc.desc : test OH_AVCapability_AreVideoSizeAndFrameRateSupported 2155 * @tc.size : MediumTest 2156 * @tc.type : Function 2157 * @tc.level : Level 1 2158 */ 2159 it('testOhAvCapabilityAreVideoSizeAndFrameRateSupported001', 0, async (done: Function) => { 2160 expect(mediacodecbasexdlndk.OH_AVCapability_AreVideoSizeAndFrameRateSupported()).assertEqual(0); 2161 done(); 2162 }); 2163 2164 /** 2165 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETVIDEOSUPPORTEDPIXELFORMATS_0100 2166 * @tc.name : testOhAvCapabilityGetVideoSupportedPixelFormats001 2167 * @tc.desc : test OH_AVCapability_GetVideoSupportedPixelFormats 2168 * @tc.size : MediumTest 2169 * @tc.type : Function 2170 * @tc.level : Level 1 2171 */ 2172 it('testOhAvCapabilityGetVideoSupportedPixelFormats001', 0, async (done: Function) => { 2173 expect(mediacodecbasexdlndk.OH_AVCapability_GetVideoSupportedPixelFormats()).assertEqual(0); 2174 done(); 2175 }); 2176 2177 /** 2178 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETSUPPORTEDPROFILES_0100 2179 * @tc.name : testOhAvCapabilityGetSupportedProfiles001 2180 * @tc.desc : test OH_AVCapability_GetSupportedProfiles 2181 * @tc.size : MediumTest 2182 * @tc.type : Function 2183 * @tc.level : Level 1 2184 */ 2185 it('testOhAvCapabilityGetSupportedProfiles001', 0, async (done: Function) => { 2186 expect(mediacodecbasexdlndk.OH_AVCapability_GetSupportedProfiles()).assertEqual(0); 2187 done(); 2188 }); 2189 2190 /** 2191 * @tc.number : SUB_MULTIMEDIA_AV_CODEC_NATIVE_AVCAPABILITY_OH_AVCAPABILITY_GETSUPPORTEDLEVELSFORPROFILE_0100 2192 * @tc.name : testOhAvCapabilityGetSupportedLevelsForProfile001 2193 * @tc.desc : test OH_AVCapability_GetSupportedLevelsForProfile 2194 * @tc.size : MediumTest 2195 * @tc.type : Function 2196 * @tc.level : Level 1 2197 */ 2198 it('testOhAvCapabilityGetSupportedLevelsForProfile001', 0, async (done: Function) => { 2199 expect(mediacodecbasexdlndk.OH_AVCapability_GetSupportedLevelsForProfile()).assertEqual(0); 2200 done(); 2201 }); 2202 2203 }) 2204} 2205