summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorcehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-09 23:46:28 +0000
committercehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-09 23:46:28 +0000
commit919793e643612389a79d580c5306c1d4e991d0d4 (patch)
tree3c8748683b7a127b50dd8f129c69d890e89d39f2 /libvo
parentfa60631a76710d0ef50e840cc5046e216eace74c (diff)
downloadmpv-919793e643612389a79d580c5306c1d4e991d0d4.tar.bz2
mpv-919793e643612389a79d580c5306c1d4e991d0d4.tar.xz
Output number of reference frames before creating H264 vdpau decoder.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28927 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_vdpau.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libvo/vo_vdpau.c b/libvo/vo_vdpau.c
index 4e0194493e..f7f2450751 100644
--- a/libvo/vo_vdpau.c
+++ b/libvo/vo_vdpau.c
@@ -786,6 +786,7 @@ static int draw_slice(uint8_t *image[], int stride[], int w, int h,
break;
case IMGFMT_VDPAU_H264:
vdp_decoder_profile = VDP_DECODER_PROFILE_H264_HIGH;
+ mp_msg(MSGT_VO, MSGL_V, "[vdpau] Creating H264 hardware decoder for %d reference frames.\n", max_refs);
break;
case IMGFMT_VDPAU_WMV3:
vdp_decoder_profile = VDP_DECODER_PROFILE_VC1_MAIN;