| Opened 14 years ago Closed 14 years ago #218 closed defect (fixed)Memory allocation in TComAdaptiveLoopFilter::create
 Description
In TComAdaptiveLoopFilter::create() 
memory is allocated using: 
get_mem2Dpel(&(m_varImgMethods[i]), m_img_width, m_img_width); 
This should probably be: 
get_mem2Dpel(&(m_varImgMethods[i]), m_img_height, m_img_width); 
With usual "landscape" picture dimensions this should not be a problem, but for "portrait" formats the allocated memory is not sufficient. Change History (4)comment:1 Changed 14 years ago by ksuehring
 comment:2 Changed 14 years ago by davidf
 
Updating component after adding WD (Text) tickets comment:3 Changed 14 years ago by davidf
 comment:4 Changed 14 years ago by davidf
 Note: See
        TracTickets for help on using
        tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant 
 | ||||||||||||||||

fixed in r1419