• Kevin Mark's avatar
    libavfilter/scale2ref: Maintain main input's DAR · d32a6c36
    Kevin Mark authored
    The scale2ref filter will now maintain the DAR of the main input and
    not the DAR of the reference input. This previous behavior was deemed
    counterintuitive for most (all?) use-cases.
    
    Before:
    scale2ref=iw/4:ow/mdar
    in  w:320 h:240 fmt:rgb24 sar:1/1
    ref w:640 h:360 fmt:rgb24 sar:1/1
    out w:160 h:120 fmt:rgb24 sar:4/3 flags:0x2
    SAR: ((120 * 640) / (160 * 360)) * (1 / 1) = 4 / 3
    DAR: (160 / 120) * (4 / 3) = 16 / 9
    (main out now same DAR as ref)
    
    Now:
    scale2ref=iw/4:ow/mdar
    in  w:320 h:240 fmt:rgb24 sar:1/1
    ref w:640 h:360 fmt:rgb24 sar:1/1
    out w:160 h:120 fmt:rgb24 sar:1/1 flags:0x2
    SAR: ((120 * 320) / (160 * 240)) * (1 / 1) = 1 / 1
    DAR: (160 / 120) * (1 / 1) = 4 / 3
    (main out same DAR as main in)
    
    The scale2ref FATE test has also been updated.
    Signed-off-by: 's avatarKevin Mark <kmark937@gmail.com>
    Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
    d32a6c36
Name
Last commit
Last update
compat Loading commit data...
doc Loading commit data...
ffbuild Loading commit data...
libavcodec Loading commit data...
libavdevice Loading commit data...
libavfilter Loading commit data...
libavformat Loading commit data...
libavresample Loading commit data...
libavutil Loading commit data...
libpostproc Loading commit data...
libswresample Loading commit data...
libswscale Loading commit data...
presets Loading commit data...
tests Loading commit data...
tools Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
.travis.yml Loading commit data...
CONTRIBUTING.md Loading commit data...
COPYING.GPLv2 Loading commit data...
COPYING.GPLv3 Loading commit data...
COPYING.LGPLv2.1 Loading commit data...
COPYING.LGPLv3 Loading commit data...
CREDITS Loading commit data...
Changelog Loading commit data...
INSTALL.md Loading commit data...
LICENSE.md Loading commit data...
MAINTAINERS Loading commit data...
Makefile Loading commit data...
README.md Loading commit data...
RELEASE Loading commit data...
cmdutils.c Loading commit data...
cmdutils.h Loading commit data...
cmdutils_opencl.c Loading commit data...
configure Loading commit data...
ffmpeg.c Loading commit data...
ffmpeg.h Loading commit data...
ffmpeg_cuvid.c Loading commit data...
ffmpeg_filter.c Loading commit data...
ffmpeg_hw.c Loading commit data...
ffmpeg_opt.c Loading commit data...
ffmpeg_qsv.c Loading commit data...
ffmpeg_videotoolbox.c Loading commit data...
ffplay.c Loading commit data...
ffprobe.c Loading commit data...
ffserver.c Loading commit data...
ffserver_config.c Loading commit data...
ffserver_config.h Loading commit data...