Commit f79d8c48 authored by ods15's avatar ods15

Original Commit: r85 | ods15 | 2006-09-29 21:07:58 +0300 (Fri, 29 Sep 2006) | 2 lines

bad array decleration

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6490 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8ac4a0d1
......@@ -470,7 +470,7 @@ static void create_vorbis_context(venc_context_t * venc, AVCodecContext * avccon
rc->classbook = 15;
rc->books = av_malloc(sizeof(int[8]) * rc->classifications);
for (i = 0; i < rc->classifications; i++) {
int a[][10] = {
int a[10][8] = {
{ -1, -1, -1, -1, -1, -1, -1, -1, },
{ -1, -1, 16, -1, -1, -1, -1, -1, },
{ -1, -1, 17, -1, -1, -1, -1, -1, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment