diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-08-05 21:00:15 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-08-05 21:00:15 +0100 |
commit | 486fe1fc46d5f5a87696488184de7b7a5a9cb857 (patch) | |
tree | 1adb8a5570bbcc4d7ddcb5dfa41b5d6978223cbd | |
parent | 075ceb0f09469b507deb0d06d3cfa5c829a6661f (diff) | |
download | xine-lib-486fe1fc46d5f5a87696488184de7b7a5a9cb857.tar.gz xine-lib-486fe1fc46d5f5a87696488184de7b7a5a9cb857.tar.bz2 |
Silence "progressive:" output.
-rw-r--r-- | src/video_dec/libvdpau/vdpau_h264.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_dec/libvdpau/vdpau_h264.c b/src/video_dec/libvdpau/vdpau_h264.c index 682a02e00..e16c800a7 100644 --- a/src/video_dec/libvdpau/vdpau_h264.c +++ b/src/video_dec/libvdpau/vdpau_h264.c @@ -458,7 +458,9 @@ static void draw_frames(video_decoder_t *this_gen, int flush) while ((decoded_pic = dpb_get_next_out_picture(this->nal_parser->dpb, flush)) != NULL) { decoded_pic->img->top_field_first = dp_top_field_first(decoded_pic); decoded_pic->img->progressive_frame = check_progressive(this_gen, decoded_pic); +#ifdef DEBUG_H264 printf("progressive: %d\n", decoded_pic->img->progressive_frame); +#endif if (flush) { xprintf(this->xine, XINE_VERBOSITY_DEBUG, "h264 flush, draw pts: %"PRId64"\n", decoded_pic->img->pts); |