diff options
author | Julian Scheel <julian@jusst.de> | 2009-01-25 16:58:47 +0000 |
---|---|---|
committer | Julian Scheel <julian@jusst.de> | 2009-01-25 16:58:47 +0000 |
commit | cfdf89b5aa5f0cc2953723c48d7b56f9b1b79600 (patch) | |
tree | 5f1fdaa158b8f914630aba9221fa609a1e0e08a6 /src | |
parent | bb85753bac351eadf6e8735403f250f000464611 (diff) | |
download | xine-lib-cfdf89b5aa5f0cc2953723c48d7b56f9b1b79600.tar.gz xine-lib-cfdf89b5aa5f0cc2953723c48d7b56f9b1b79600.tar.bz2 |
Remove some printfs.
Diffstat (limited to 'src')
-rw-r--r-- | src/libvdpau/h264_parser.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libvdpau/h264_parser.c b/src/libvdpau/h264_parser.c index 916c40c1a..f19383f8a 100644 --- a/src/libvdpau/h264_parser.c +++ b/src/libvdpau/h264_parser.c @@ -994,7 +994,6 @@ void decode_ref_pic_marking(struct nal_unit *nal, struct decoded_picture* pic = NULL; if ((pic = dpb_get_picture(dpb, pic_num_x)) != NULL) { if (pic->nal->slc->field_pic_flag == 0) { - printf("Set %d as unused for ref\n", pic_num_x); dpb_set_unused_ref_picture_a(dpb, pic); } else { if(!pic->top_is_reference) @@ -1004,8 +1003,7 @@ void decode_ref_pic_marking(struct nal_unit *nal, //printf("FIXME: We might need do delete more from the DPB...\n"); // FIXME: some more handling needed here?! See 8.2.5.4.1, p. 120 } - } else - printf("Can't set %d as unused for ref\n", pic_num_x); + } } else if (memory_management_control_operation == 2) { // long-term -> unused for reference struct decoded_picture* pic = dpb_get_picture_by_ltpn(dpb, |