Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/asv1.c')
-rw-r--r--libavcodec/asv1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/asv1.c b/libavcodec/asv1.c
index 10fbac24bc..c9a3d24944 100644
--- a/libavcodec/asv1.c
+++ b/libavcodec/asv1.c
@@ -49,8 +49,8 @@ typedef struct ASV1Context{
int mb_width2;
int mb_height2;
DECLARE_ALIGNED_16(DCTELEM, block[6][64]);
- DECLARE_ALIGNED_8(uint16_t, intra_matrix[64]);
- DECLARE_ALIGNED_8(int, q_intra_matrix[64]);
+ uint16_t intra_matrix[64];
+ int q_intra_matrix[64];
uint8_t *bitstream_buffer;
unsigned int bitstream_buffer_size;
} ASV1Context;