Commit b2d9d4a5 authored by Alex Converse's avatar Alex Converse Committed by Robert Swain

Give an error message when returning due to an unallocated channel element

Patch by Alex Converse ( alex converse gmail com )

Originally committed as revision 17181 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 30272450
......@@ -1576,7 +1576,10 @@ static int aac_decode_frame(AVCodecContext * avccontext, void * data, int * data
}
if(elem_type < TYPE_DSE) {
if(!ac->che[elem_type][elem_id])
{
av_log(ac->avccontext, AV_LOG_ERROR, "channel element %d.%d is not allocated\n", elem_type, elem_id);
return -1;
}
}
switch (elem_type) {
......
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