1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-02 17:12:49 +02:00

postprocess: Remove test for impossible condition (was: Re: postprocess.c: replace check for p==NULL with *p==0)

This commit is contained in:
Piotr Kaczuba 2011-06-01 18:47:37 +02:00 committed by Michael Niedermayer
parent b443447536
commit c96f3750c2

View File

@ -819,8 +819,7 @@ pp_mode *pp_get_mode_by_name_and_quality(const char *name, int quality)
int plen;
int spaceLeft;
if(p==NULL) p= temp, *p=0; //last filter
else p--, *p=','; //not last filter
p--, *p=',';
plen= strlen(p);
spaceLeft= p - temp + plen;