Correcting error in macro

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7592 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
anders 2002-10-03 12:44:58 +00:00
parent 94f26b18df
commit 150c05bec9
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ int af_lencalc(frac_t mul, af_data_t* data);
filter doesn't operate on the incoming buffer this macro must be
called to ensure the buffer is big enough. */
#define RESIZE_LOCAL_BUFFER(a,d)\
((af->data->len < af_lencalc(af->mul,data))?af_resize_local_buffer(af,data):AF_OK)
((a->data->len < af_lencalc(a->mul,d))?af_resize_local_buffer(a,d):AF_OK)
#ifndef min
#define min(a,b)(((a)>(b))?(b):(a))