mirror of
https://github.com/mpv-player/mpv
synced 2025-02-06 15:11:58 +00:00
extended par support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7389 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
c8c592dd99
commit
5c2cb7a851
@ -17,8 +17,8 @@ static vd_info_t info = {
|
|||||||
"FFmpeg's libavcodec codec family",
|
"FFmpeg's libavcodec codec family",
|
||||||
"ffmpeg",
|
"ffmpeg",
|
||||||
"A'rpi",
|
"A'rpi",
|
||||||
"http://ffmpeg.sf.net",
|
"A'rpi, Michael, Alex",
|
||||||
"native codecs"
|
"native codecs (http://ffmpeg.sf.net/)"
|
||||||
};
|
};
|
||||||
|
|
||||||
LIBVD_EXTERN(ffmpeg)
|
LIBVD_EXTERN(ffmpeg)
|
||||||
@ -273,6 +273,11 @@ static int init_vo(sh_video_t *sh){
|
|||||||
avctx->height != sh->disp_h ||
|
avctx->height != sh->disp_h ||
|
||||||
!ctx->vo_inited)
|
!ctx->vo_inited)
|
||||||
{
|
{
|
||||||
|
#if LIBAVCODEC_BUILD >= 4623
|
||||||
|
mp_dbg(MSGT_DECVIDEO, MSGL_DBG2, "aspect_ratio_info: %d\n", avctx->aspect_ratio_info);
|
||||||
|
mp_dbg(MSGT_DECVIDEO, MSGL_DBG2, "par_width: %f\n", (float)avctx->aspected_width);
|
||||||
|
mp_dbg(MSGT_DECVIDEO, MSGL_DBG2, "par_height: %f\n", (float)avctx->aspected_height);
|
||||||
|
#endif
|
||||||
ctx->last_aspect = avctx->aspect_ratio_info;
|
ctx->last_aspect = avctx->aspect_ratio_info;
|
||||||
switch(avctx->aspect_ratio_info)
|
switch(avctx->aspect_ratio_info)
|
||||||
{
|
{
|
||||||
@ -287,6 +292,12 @@ static int init_vo(sh_video_t *sh){
|
|||||||
case FF_ASPECT_SQUARE:
|
case FF_ASPECT_SQUARE:
|
||||||
sh->aspect = 0.0;
|
sh->aspect = 0.0;
|
||||||
break;
|
break;
|
||||||
|
#if LIBAVCODEC_BUILD >= 4623
|
||||||
|
case FF_ASPECT_EXTENDED:
|
||||||
|
if (avctx->aspected_width && avctx->aspected_height)
|
||||||
|
sh->aspect = (float)avctx->aspected_width/(float)avctx->aspected_height;
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
sh->disp_w = avctx->width;
|
sh->disp_w = avctx->width;
|
||||||
sh->disp_h = avctx->height;
|
sh->disp_h = avctx->height;
|
||||||
|
Loading…
Reference in New Issue
Block a user