We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e4dd10 commit f614846Copy full SHA for f614846
src/torchcodec/_core/NVDECCache.h
@@ -49,11 +49,11 @@ class NVDECCache {
49
// all these parameters match.
50
struct CacheKey {
51
cudaVideoCodec codecType;
52
- unsigned int width;
53
- unsigned int height;
+ uint32_t width;
+ uint32_t height;
54
cudaVideoChromaFormat chromaFormat;
55
- unsigned int bitDepthLumaMinus8;
56
- unsigned char numDecodeSurfaces;
+ uint32_t bitDepthLumaMinus8;
+ uint8_t numDecodeSurfaces;
57
58
CacheKey() = delete;
59
0 commit comments