X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=libhb%2Fdecdca.c;h=ea4cb560cb13c91a745a327dfb09589b17d7a206;hb=37bbf6c1646ca3b539d1b6f1b5f2a1bb779042a2;hp=9d1bde71c3041f9b1cafcc025ccf9e524399ab7b;hpb=3cdb4eb95a2402eabb6622d02d969a2dc858de0c;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/libhb/decdca.c b/libhb/decdca.c index 9d1bde71..ea4cb560 100644 --- a/libhb/decdca.c +++ b/libhb/decdca.c @@ -33,7 +33,7 @@ struct hb_work_private_s hb_list_t * list; - int out_discrete_channels; + int out_discrete_channels; }; @@ -75,13 +75,15 @@ static int decdcaInit( hb_work_object_t * w, hb_job_t * job ) pv->list = hb_list_init(); pv->state = dca_init( 0 ); - /* Decide what format we want out of libdca - work.c has already done some of this deduction for us in do_job() */ + /* Decide what format we want out of libdca + work.c has already done some of this deduction for us in do_job() */ - pv->flags_out = HB_AMIXDOWN_GET_DCA_FORMAT(audio->config.out.mixdown); + pv->flags_out = HB_AMIXDOWN_GET_DCA_FORMAT(audio->config.out.mixdown); + if ( audio->config.out.codec == HB_ACODEC_LAME ) + pv->flags_out |= DCA_ADJUST_LEVEL; - /* pass the number of channels used into the private work data */ - /* will only be actually used if we're not doing AC3 passthru */ + /* pass the number of channels used into the private work data */ + /* will only be actually used if we're not doing AC3 passthru */ pv->out_discrete_channels = HB_AMIXDOWN_GET_DISCRETE_CHANNEL_COUNT(audio->config.out.mixdown); pv->level = 32768.0; @@ -153,8 +155,10 @@ static hb_buffer_t * Decode( hb_work_object_t * w ) { hb_work_private_t * pv = w->private_data; hb_buffer_t * buf; + hb_audio_t * audio = w->audio; int i, j, k; int64_t pts, pos; + uint64_t upts, upos; int num_blocks; /* Get a frame header if don't have one yet */ @@ -197,7 +201,10 @@ static hb_buffer_t * Decode( hb_work_object_t * w ) } /* Get the whole frame */ - hb_list_getbytes( pv->list, pv->frame, pv->size, &pts, &pos ); + hb_list_getbytes( pv->list, pv->frame, pv->size, &upts, &upos ); + pts = (int64_t)upts; + pos = (int64_t)upos; + if ( pts != pv->last_buf_pts ) { pv->last_buf_pts = pts; @@ -210,16 +217,6 @@ static hb_buffer_t * Decode( hb_work_object_t * w ) pts = -1; } - /* Feed libdca */ - dca_frame( pv->state, pv->frame, &pv->flags_out, &pv->level, 0 ); - - /* find out how many blocks are in this frame */ - num_blocks = dca_blocks_num( pv->state ); - - /* num_blocks blocks per frame, 256 samples per block, channelsused channels */ - int nsamp = num_blocks * 256; - buf = hb_buffer_init( nsamp * pv->out_discrete_channels * sizeof( float ) ); - // mkv files typically use a 1ms timebase which results in a lot of // truncation error in their timestamps. Also, TSMuxer or something // in the m2ts-to-mkv toolchain seems to take a very casual attitude @@ -230,6 +227,31 @@ static hb_buffer_t * Decode( hb_work_object_t * w ) { pts = pv->next_pts; } + + double frame_dur = (double)(pv->frame_length & ~0xFF) / (double)pv->rate * 90000.; + + /* DCA passthrough: don't decode the DCA frame */ + if( audio->config.out.codec == HB_ACODEC_DCA_PASS ) + { + buf = hb_buffer_init( pv->size ); + memcpy( buf->data, pv->frame, pv->size ); + buf->start = pts; + pv->next_pts = pts + frame_dur; + buf->stop = pv->next_pts; + pv->sync = 0; + return buf; + } + + /* Feed libdca */ + dca_frame( pv->state, pv->frame, &pv->flags_out, &pv->level, 0 ); + + /* find out how many blocks are in this frame */ + num_blocks = dca_blocks_num( pv->state ); + + /* num_blocks blocks per frame, 256 samples per block, channelsused channels */ + int nsamp = num_blocks * 256; + buf = hb_buffer_init( nsamp * pv->out_discrete_channels * sizeof( float ) ); + buf->start = pts; pv->next_pts = pts + (double)nsamp / (double)pv->rate * 90000.; buf->stop = pv->next_pts; @@ -246,10 +268,10 @@ static hb_buffer_t * Decode( hb_work_object_t * w ) /* Interleave */ for( j = 0; j < 256; j++ ) { - for ( k = 0; k < pv->out_discrete_channels; k++ ) - { - samples_out[(pv->out_discrete_channels*j)+k] = samples_in[(256*k)+j] * 16384; - } + for ( k = 0; k < pv->out_discrete_channels; k++ ) + { + samples_out[(pv->out_discrete_channels*j)+k] = samples_in[(256*k)+j] * 16384; + } } }