[FFmpeg-cvslog] r23035 - trunk/libavcodec/aaccoder.c

Yuriy Kaminskiy yumkam
Thu May 6 22:31:13 CEST 2010


On 07.05.2010 00:18, alexc wrote:
> --- trunk/libavcodec/aaccoder.c	Wed May  5 23:45:00 2010	(r23034)
> +++ trunk/libavcodec/aaccoder.c	Thu May  6 22:18:36 2010	(r23035)
>                  if (dist > uplim[w*16+g])
>                      step = -step;
> +                scf += step;
> +                av_clip_uint8(scf);

no-op; av_clip_* are inline functions, not macros with side-effect.

> +                step = scf - prev_scf;
>                  if (FFABS(step) <= 1 || (step > 0 && scf >= max_scf) || (step < 0 && scf <= min_scf)) {




More information about the ffmpeg-cvslog mailing list