summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2013-01-29 01:30:31 +0000
committerjstebbins <[email protected]>2013-01-29 01:30:31 +0000
commitbd424cd40a22f850815fb840f9b294191a605868 (patch)
treed4c96a577b2f67d05876e4286516c150a51701f9 /libhb
parentd6b98c61de3ce23aa5edcfa5e345a616395dada5 (diff)
libhb: remove exta log text that was used for debugging
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5218 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r--libhb/decmpeg2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/decmpeg2.c b/libhb/decmpeg2.c
index af0f6fef5..0e1d78eda 100644
--- a/libhb/decmpeg2.c
+++ b/libhb/decmpeg2.c
@@ -259,7 +259,7 @@ static void next_tag( hb_libmpeg2_t *m, hb_buffer_t *buf_es )
{
if ( m->tags[m->cur_tag].start < 0 ||
( m->got_iframe && m->tags[m->cur_tag].start >= m->first_pts ) )
- hb_log("2 mpeg2 tag botch: pts %"PRId64", tag pts %"PRId64" buf %p",
+ hb_log("mpeg2 tag botch: pts %"PRId64", tag pts %"PRId64" buf %p",
buf_es->s.start, m->tags[m->cur_tag].start, m->tags[m->cur_tag].cc_buf);
if ( m->tags[m->cur_tag].cc_buf )
hb_buffer_close( &m->tags[m->cur_tag].cc_buf );
@@ -395,7 +395,7 @@ static int hb_libmpeg2_decode( hb_libmpeg2_t * m, hb_buffer_t * buf_es,
}
else if (m->tags[m->cur_tag].cc_buf)
{
- hb_log("1 mpeg2 tag botch2: pts %"PRId64", tag pts %"PRId64" buf %p",
+ hb_log("mpeg2 tag botch2: pts %"PRId64", tag pts %"PRId64" buf %p",
buf_es->s.start, m->tags[m->cur_tag].start, m->tags[m->cur_tag].cc_buf);
hb_buffer_close( &m->tags[m->cur_tag].cc_buf );
}