diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-01-26 21:10:54 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-02-06 10:21:52 +0100 |
commit | 6ed9fc44badb256bdf235e700702bee46a9f6527 (patch) | |
tree | 8db8e0bbabb2022ab36238f1a8b199d025569d42 /libavcodec/svq1.c | |
parent | 99162f8d46db7ec02facae035c4ff573d2d8d612 (diff) | |
download | ffmpeg-6ed9fc44badb256bdf235e700702bee46a9f6527.tar.gz |
svq1: replace struct svq1_frame_size with an array.
It is used as an array in svq1enc, so this is more correct.
Diffstat (limited to 'libavcodec/svq1.c')
-rw-r--r-- | libavcodec/svq1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/svq1.c b/libavcodec/svq1.c index e20fa43344..545df80974 100644 --- a/libavcodec/svq1.c +++ b/libavcodec/svq1.c @@ -37,7 +37,7 @@ #include "svq1_vlc.h" /* standard video sizes */ -const struct svq1_frame_size ff_svq1_frame_size_table[7] = { +const uint16_t ff_svq1_frame_size_table[7][2] = { { 160, 120 }, { 128, 96 }, { 176, 144 }, { 352, 288 }, { 704, 576 }, { 240, 180 }, { 320, 240 } }; |