static void ScanFunc( void * );
static int DecodePreviews( hb_scan_t *, hb_title_t * title );
-static int LookForAudio( hb_title_t * title, hb_buffer_t * b );
+static void LookForAudio( hb_title_t * title, hb_buffer_t * b );
static int AllAudioOK( hb_title_t * title );
static const char *aspect_to_string( double aspect )
vid_buf = NULL;
}
}
- else
+ else if( ! AllAudioOK( title ) )
{
- if( ! AllAudioOK( title ) )
- if ( !LookForAudio( title, buf_es ) )
- buf_es = NULL;
+ LookForAudio( title, buf_es );
+ buf_es = NULL;
}
if ( buf_es )
hb_buffer_close( &buf_es );
* aren't (e.g., some European DVD Teletext streams use the same IDs as US ATSC
* AC-3 audio).
*/
-static int LookForAudio( hb_title_t * title, hb_buffer_t * b )
+static void LookForAudio( hb_title_t * title, hb_buffer_t * b )
{
int i;
if( !audio || audio->config.in.bitrate != 0 )
{
/* not found or already done */
- return 1;
+ hb_buffer_close( &b );
+ return;
}
if ( audio->priv.scan_cache == NULL )
if ( !info.bitrate )
{
/* didn't find any info */
- return 0;
+ return;
}
hb_fifo_flush( audio->priv.scan_cache );
hb_fifo_close( &audio->priv.scan_cache );
audio->config.lang.description );
free( w );
- return 1;
+ return;
// We get here if there's no hope of finding info on an audio bitstream,
// either because we don't have a decoder (or a decoder with a bitstream
hb_fifo_flush( audio->priv.scan_cache );
hb_fifo_close( &audio->priv.scan_cache );
hb_list_rem( title->list_audio, audio );
- return -1;
+ return;
}
/*