diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-19 14:24:45 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-03-25 15:56:14 +0100 |
commit | a7da517f6a5c472f46f67dd33bb6b95ccc919923 (patch) | |
tree | 4d81c15ee42203fc381ffba5f763e1e8278723a4 /libavcodec/dxva2_h264.c | |
parent | f4d581cda3897f66c1dda7586b93f86a591dbbef (diff) | |
download | ffmpeg-a7da517f6a5c472f46f67dd33bb6b95ccc919923.tar.gz |
h264data: Move all data tables from a header to a .c file
Diffstat (limited to 'libavcodec/dxva2_h264.c')
-rw-r--r-- | libavcodec/dxva2_h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dxva2_h264.c b/libavcodec/dxva2_h264.c index 8f7c4a7eb0..eceb956dcf 100644 --- a/libavcodec/dxva2_h264.c +++ b/libavcodec/dxva2_h264.c @@ -176,7 +176,7 @@ static void fill_scaling_lists(const AVCodecContext *avctx, AVDXVAContext *ctx, } else { for (i = 0; i < 6; i++) for (j = 0; j < 16; j++) - qm->bScalingLists4x4[i][j] = h->pps.scaling_matrix4[i][zigzag_scan[j]]; + qm->bScalingLists4x4[i][j] = h->pps.scaling_matrix4[i][ff_zigzag_scan[j]]; for (i = 0; i < 64; i++) { qm->bScalingLists8x8[0][i] = h->pps.scaling_matrix8[0][ff_zigzag_direct[i]]; |