diff options
author | Andreas Auras <yak54@inkennet.de> | 2011-03-22 11:03:23 +0100 |
---|---|---|
committer | Andreas Auras <yak54@inkennet.de> | 2011-03-22 11:03:23 +0100 |
commit | 6e3610eb726674925f9c4b51aaa45f0d94bcd388 (patch) | |
tree | 6cca7959f0c17aa51d1811fb82ff1f95fa433bec | |
parent | 28bf98d37e4db040d67703669820f303d34cde39 (diff) | |
download | xine-lib-6e3610eb726674925f9c4b51aaa45f0d94bcd388.tar.gz xine-lib-6e3610eb726674925f9c4b51aaa45f0d94bcd388.tar.bz2 |
Fixed minor issues with debug logging.
-rw-r--r-- | src/video_dec/libvdpau/vdpau_h264.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_dec/libvdpau/vdpau_h264.c b/src/video_dec/libvdpau/vdpau_h264.c index 5c4edc6c3..9bcddd9be 100644 --- a/src/video_dec/libvdpau/vdpau_h264.c +++ b/src/video_dec/libvdpau/vdpau_h264.c @@ -22,6 +22,8 @@ * vdpau_h264.c: H264 Video Decoder utilizing nvidia VDPAU engine */ +#define LOG_MODULE "vdpau_h264" + #ifdef HAVE_CONFIG_H #include "config.h" #endif @@ -557,7 +559,7 @@ static int vdpau_decoder_render(video_decoder_t *this_gen, VdpBitstreamBuffer *v if (this->dangling_img) { xprintf(this->xine, XINE_VERBOSITY_LOG, - "broken stream: current img wasn't processed -- freeing it\n!"); + "broken stream: current img wasn't processed -- freeing it!\n"); this->dangling_img->free(this->dangling_img); } this->dangling_img = img; |