Why you think it is useless? Have you checked checksums matches before and after?
On 10/30/19, leozhang <[email protected]> wrote: > Signed-off-by: leozhang <[email protected]> > --- > libavfilter/vf_bilateral.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavfilter/vf_bilateral.c b/libavfilter/vf_bilateral.c > index 3c9d800..ba3c6e1 100644 > --- a/libavfilter/vf_bilateral.c > +++ b/libavfilter/vf_bilateral.c > @@ -277,8 +277,8 @@ static void bilateral_##name(BilateralContext *s, const > uint8_t *ssrc, uint8_t * > factor_++; > \ > } > \ > > \ > - memcpy(ypy, ycy, sizeof(float) * width); > \ > - memcpy(ypf, ycf, sizeof(float) * width); > \ > + ypy = ycy; \ > + ypf = ycf; \ > } > \ > > \ > for (int i = 0; i < height; i++) > \ > -- > 1.8.3.1 > > _______________________________________________ > ffmpeg-devel mailing list > [email protected] > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > [email protected] with subject "unsubscribe". _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
