mirror of https://github.com/mpv-player/mpv
mpeg4 has only 8bit per numerator and denominator ...
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11196 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
4b29d38b01
commit
c32e44be08
|
@ -446,7 +446,10 @@ static int config(struct vf_instance_s* vf,
|
|||
|
||||
if (e && ratio > 0.1 && ratio < 10.0) {
|
||||
#if LIBAVCODEC_BUILD >= 4687
|
||||
lavc_venc_context->sample_aspect_ratio= av_d2q(ratio * height / width, 30000);
|
||||
lavc_venc_context->sample_aspect_ratio= av_d2q(ratio * height / width, 255);
|
||||
mp_dbg(MSGT_MENCODER, MSGL_DBG2, "sample_aspect_ratio: %d/%d\n",
|
||||
lavc_venc_context->sample_aspect_ratio.num,
|
||||
lavc_venc_context->sample_aspect_ratio.den);
|
||||
#else
|
||||
lavc_venc_context->aspect_ratio= ratio;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue