summaryrefslogtreecommitdiffstats
path: root/libhb/muxcommon.c
diff options
context:
space:
mode:
authorjohnallen <[email protected]>2007-01-06 20:00:53 +0000
committerjohnallen <[email protected]>2007-01-06 20:00:53 +0000
commitc353aa54214353ed641b1f4fb00c96b6886b4ade (patch)
tree0c84ad257ac0905aefb8f3adead12d4b87302c33 /libhb/muxcommon.c
parent22be1c5718977a0da3ff709199f45d6e684af224 (diff)
added Doxyfile, config file for doxygen
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@93 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxcommon.c')
-rw-r--r--libhb/muxcommon.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libhb/muxcommon.c b/libhb/muxcommon.c
index 93fa773e3..17628df11 100644
--- a/libhb/muxcommon.c
+++ b/libhb/muxcommon.c
@@ -46,6 +46,7 @@ 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;
@@ -119,12 +120,14 @@ 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 );
@@ -133,6 +136,7 @@ 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 )
{
@@ -152,6 +156,7 @@ static void MuxerFunc( void * _mux )
}
hb_buffer_close( &buf );
}
+ hb_log( "mux: 3");
if( job->pass != 1 )
{
@@ -159,6 +164,7 @@ static void MuxerFunc( void * _mux )
uint64_t bytes_total, frames_total;
m->end( m );
+ hb_log( "mux: 4");
if( !stat( job->file, &sb ) )
{