summaryrefslogtreecommitdiffstats
path: root/libhb/muxcommon.c
diff options
context:
space:
mode:
authorjohnallen <[email protected]>2007-01-06 20:24:49 +0000
committerjohnallen <[email protected]>2007-01-06 20:24:49 +0000
commitcf738fd40c392bb69a3e8c4b2f31b86b63a20e82 (patch)
treef02460829f6b8778d81795dc4d74c8f506dd08b2 /libhb/muxcommon.c
parentc353aa54214353ed641b1f4fb00c96b6886b4ade (diff)
RapidSVN commited changes to files I did not want commited. This commit revert those files back to rev 92.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@94 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxcommon.c')
-rw-r--r--libhb/muxcommon.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libhb/muxcommon.c b/libhb/muxcommon.c
index 17628df11..93fa773e3 100644
--- a/libhb/muxcommon.c
+++ b/libhb/muxcommon.c
@@ -46,7 +46,6 @@ static hb_track_t * GetTrack( hb_list_t * list )
{
track = track2;
pts = buf->start;
- //hb_log("track: #%d, frame count %ld, fifo size %d", i, track->frames, hb_fifo_size( track->fifo));
}
}
return track;
@@ -120,14 +119,12 @@ static void MuxerFunc( void * _mux )
/* Build list of fifos we're interested in */
list = hb_list_init();
- hb_log( "mux: audio list count %d", hb_list_count( title->list_audio ));
track = calloc( sizeof( hb_track_t ), 1 );
track->fifo = job->fifo_mpeg4;
track->mux_data = job->mux_data;
hb_list_add( list, track );
- hb_log( "mux: 1");
for( i = 0; i < hb_list_count( title->list_audio ); i++ )
{
audio = hb_list_item( title->list_audio, i );
@@ -136,7 +133,6 @@ static void MuxerFunc( void * _mux )
track->mux_data = audio->mux_data;
hb_list_add( list, track );
}
- hb_log( "mux: 2");
while( !*job->die && !job->done )
{
@@ -156,7 +152,6 @@ static void MuxerFunc( void * _mux )
}
hb_buffer_close( &buf );
}
- hb_log( "mux: 3");
if( job->pass != 1 )
{
@@ -164,7 +159,6 @@ static void MuxerFunc( void * _mux )
uint64_t bytes_total, frames_total;
m->end( m );
- hb_log( "mux: 4");
if( !stat( job->file, &sb ) )
{