diff options
Diffstat (limited to 'libhb/hb.c')
-rw-r--r-- | libhb/hb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libhb/hb.c b/libhb/hb.c index 629b2e3a3..a9d9e417b 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -440,11 +440,6 @@ hb_handle_t * hb_init( int verbose, int update_check ) h->interjob = calloc( sizeof( hb_interjob_t ), 1 ); -#ifdef USE_QSV - /* Intel Quick Sync Video */ - hb_qsv_info_print(); -#endif - /* Start library thread */ hb_log( "hb_init: starting libhb thread" ); h->die = 0; @@ -620,6 +615,11 @@ void hb_scan( hb_handle_t * h, const char * path, int title_index, hb_title_close( &title ); } +#ifdef USE_QSV + /* Print QSV info here so that it's in all scan and encode logs */ + hb_qsv_info_print(); +#endif + /* Print CPU info here so that it's in all scan and encode logs */ hb_log("hb_scan: CPU count: %i", hb_get_cpu_count()); if (hb_get_cpu_name() != NULL) |