[vlc-devel] [PATCH v1 01/33] filter: add a function to do the picture filtering

Steve Lhomme robux4 at ycbcr.xyz
Sat Sep 26 07:46:59 CEST 2020


On 2020-09-25 17:02, Rémi Denis-Courmont wrote:
> Le perjantaina 25. syyskuuta 2020, 17.46.37 EEST Steve Lhomme a écrit :
>> ---
>>   include/vlc_filter.h | 5 +++++
>>   1 file changed, 5 insertions(+)
>>
>> diff --git a/include/vlc_filter.h b/include/vlc_filter.h
>> index d9c274a645a..6197cec2c9b 100644
>> --- a/include/vlc_filter.h
>> +++ b/include/vlc_filter.h
>> @@ -191,6 +191,11 @@ static inline picture_t *filter_NewPicture( filter_t
>> *p_filter ) return pic;
>>   }
>>
>> +static inline picture_t *filter_FilterSingle( filter_t *p_filter, picture_t
>> *pic ) +{
>> +    return p_filter->pf_video_filter( p_filter, pic );
>> +}
> 
> Unfortunate choice of name considering that the same type is used for non-
> video.

Indeed.

>> +
>>   /**
>>    * Flush a filter
>>    *
> 
> 
> -- 
> Rémi Denis-Courmont
> http://www.remlab.net/
> 
> 
> 
> _______________________________________________
> vlc-devel mailing list
> To unsubscribe or modify your subscription options:
> https://mailman.videolan.org/listinfo/vlc-devel
> 


More information about the vlc-devel mailing list