1# OH_AVRange 2 3 4## Overview 5 6The **OH_AVRange** struct defines the value range, which contains the minimum value and maximum value. 7 8\@syscap SystemCapability.Multimedia.Media.CodecBase 9 10**Since** 11 1210 13 14**Related Modules** 15 16[AVCapability](_a_v_capability.md) 17 18 19## Summary 20 21 22### Member Variables 23 24| Name| Description| 25| -------- | -------- | 26| [minVal](#minval) | Defines the minimum value.| 27| [maxVal](#maxval) | Defines the maximum value.| 28 29 30## Member Variable Description 31 32 33### minVal 34 35 36``` 37int32_t minVal 38``` 39 40**Description** 41 42Defines the minimum value. 43 44**Since** 45 4610 47 48 49### maxVal 50 51 52``` 53int32_t maxVal 54``` 55 56**Description** 57 58Defines the maximum value. 59 60**Since** 61 6210 63