Skip to content
Snippets Groups Projects
Commit 35d0e16b authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

Check number of bits so we do not try to use table entries which do not exist.

Originally committed as revision 13785 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8161c28c
No related branches found
No related tags found
No related merge requests found
...@@ -334,6 +334,10 @@ static av_cold int g726_init(AVCodecContext * avctx) ...@@ -334,6 +334,10 @@ static av_cold int g726_init(AVCodecContext * avctx)
av_log(avctx, AV_LOG_ERROR, "G726: unsupported audio format\n"); av_log(avctx, AV_LOG_ERROR, "G726: unsupported audio format\n");
return -1; return -1;
} }
if(index>3){
av_log(avctx, AV_LOG_ERROR, "Unsupported number of bits %d\n", index+2);
return -1;
}
g726_reset(&c->c, index); g726_reset(&c->c, index);
c->code_size = c->c.tbls->bits; c->code_size = c->c.tbls->bits;
c->bit_buffer = 0; c->bit_buffer = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment