Benoit Fouet <[EMAIL PROTECTED]> added the comment:

Hi,

Michael Niedermayer wrote:
> Michael Niedermayer <[EMAIL PROTECTED]> added the comment:
>
> On Wed, Mar 05, 2008 at 02:23:51PM -0000, Reimar Döffinger wrote:
>   
>> Reimar Döffinger <[EMAIL PROTECTED]> added the comment:
>>
>>     
>>> This is the change I made in swscale_internal.h:
>>>  #define VOF  4096
>>> -#define VOFW 2048
>>> +#define VOFW 4096
>>>       
>> I assumed you would have to double VOF as well.
>>     
>
> yes
>
>   
>> Though in that case it
>> might be better to define VOF depending on VOFW...
>>     
>
> patch welcome
>
>   

here it is

______________________________________________________
FFmpeg issue tracker <[EMAIL PROTECTED]>
<https://roundup.mplayerhq.hu/roundup/ffmpeg/issue297>
______________________________________________________
Index: libswscale/swscale_internal.h
===================================================================
--- libswscale/swscale_internal.h       (revision 26178)
+++ libswscale/swscale_internal.h       (working copy)
@@ -31,8 +31,8 @@
 
 #define MAX_FILTER_SIZE 256
 
-#define VOF  4096
 #define VOFW 2048
+#define VOF  (VOFW*2)
 
 typedef int (*SwsFunc)(struct SwsContext *context, uint8_t* src[], int 
srcStride[], int srcSliceY,
              int srcSliceH, uint8_t* dst[], int dstStride[]);

Reply via email to