mirror of
https://github.com/mpv-player/mpv
synced 2025-03-30 15:29:56 +00:00
if the stream reader supports it assign to the video the stream aspect ratio
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24320 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
1dbfe77925
commit
be450f8293
@ -3067,6 +3067,7 @@ mpctx->sh_video=mpctx->d_video->sh;
|
||||
|
||||
if(mpctx->sh_video){
|
||||
|
||||
double ar=-1.0;
|
||||
current_module="video_read_properties";
|
||||
if(!video_read_properties(mpctx->sh_video)) {
|
||||
mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_CannotReadVideoProperties);
|
||||
@ -3088,6 +3089,8 @@ if(mpctx->sh_video){
|
||||
mp_msg(MSGT_CPLAYER,MSGL_ERR,MSGTR_FPSnotspecified);
|
||||
mpctx->sh_video=mpctx->d_video->sh=NULL;
|
||||
}
|
||||
if(stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_ASPECT_RATIO, &ar) != STREAM_UNSUPPORTED)
|
||||
mpctx->sh_video->stream_aspect = ar;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user