| 380 | } |
| 381 | |
| 382 | static uint32_t avifCodecConfigurationBoxGetDepth(const avifCodecConfigurationBox * av1C) |
| 383 | { |
| 384 | if (av1C->twelveBit) { |
| 385 | return 12; |
| 386 | } else if (av1C->highBitdepth) { |
| 387 | return 10; |
| 388 | } |
| 389 | return 8; |
| 390 | } |
| 391 | |
| 392 | #if defined(AVIF_ENABLE_EXPERIMENTAL_EXTENDED_PIXI) |
| 393 | uint8_t avifCodecConfigurationBoxGetSubsamplingType(const avifCodecConfigurationBox * av1C, uint8_t channelIndex) |
no outgoing calls
no test coverage detected