From: IndecisiveTurtle <[email protected]>
Prevents compiler from mistaking it as a string
Also makes passing it to the GPU in a buffer easier
---
libavcodec/vc2enc_common.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/vc2enc_common.h b/libavcodec/vc2enc_common.h
index eaaf5ac99c..40c9ff85b5 100644
--- a/libavcodec/vc2enc_common.h
+++ b/libavcodec/vc2enc_common.h
@@ -119,7 +119,7 @@ typedef struct VC2EncContext {
int profile;
/* Quantization matrix */
- uint8_t quant[MAX_DWT_LEVELS][4];
+ int quant[MAX_DWT_LEVELS][4];
int custom_quant_matrix;
/* Division LUT */
--
2.49.0
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".