From d601904127bd70e26fff54508014e4d75556e7ba Mon Sep 17 00:00:00 2001 From: jbrjake Date: Tue, 14 Aug 2007 20:35:43 +0000 Subject: [PATCH] Use hb_log for DVD: messages instead of printf. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@813 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/dvd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libhb/dvd.c b/libhb/dvd.c index 4f3781cd9..620a0fad1 100644 --- a/libhb/dvd.c +++ b/libhb/dvd.c @@ -718,13 +718,13 @@ int hb_dvd_read( hb_dvd_t * d, hb_buffer_t * b ) d->next_vobu = d->pgc->cell_playback[d->cell_cur].first_sector; FindNextCell( d ); d->cell_overlap = 1; - printf("DVD: End of Cell\n"); + hb_log("DVD: End of Cell"); } // Revert the cell overlap, and check for a chapter break if( dsi_pack.vobu_sri.prev_vobu == SRI_END_OF_CELL ) { - printf("DVD: Beginning of Cell\n"); + hb_log("DVD: Beginning of Cell"); if( d->cell_overlap ) { b->new_chap = hb_dvd_is_break( d ); @@ -831,13 +831,13 @@ int hb_dvd_is_break( hb_dvd_t * d ) if( chapter_length >= 2048 ) { - printf("DVD: Chapter Break Cell Found\n"); + hb_log("DVD: Chapter Break Cell Found"); /* We have a chapter break */ return 1; } else { - printf("DVD: Cell Found (%d)\n", chapter_length); + hb_log("DVD: Cell Found (%d)", chapter_length); } } } -- 2.40.0