]> granicus.if.org Git - handbrake/commitdiff
Libhb: Some minor logging cleanup
authorsr55 <sr55.hb@outlook.com>
Sat, 23 Mar 2019 14:46:34 +0000 (14:46 +0000)
committerScott <sr55.hb@outlook.com>
Sat, 30 Mar 2019 21:09:26 +0000 (21:09 +0000)
libhb/comb_detect.c
libhb/decomb.c
libhb/fifo.c
libhb/grayscale.c
libhb/nlmeans.c
libhb/vce_common.c

index 10caaea2530ad157d537d94356cf9deaf7b9728a..131eaede54234b66104bf0816f3adca753878e33 100644 (file)
@@ -673,7 +673,7 @@ static void mask_dilate_thread( void *thread_args_v )
     pv = thread_args->pv;
     segment = thread_args->segment;
 
-    hb_log("mask dilate thread started for segment %d", segment);
+    hb_deep_log(3, "mask dilate thread started for segment %d", segment);
 
     while (1)
     {
@@ -775,7 +775,7 @@ static void mask_erode_thread( void *thread_args_v )
     pv = thread_args->pv;
     segment = thread_args->segment;
 
-    hb_log("mask erode thread started for segment %d", segment);
+    hb_deep_log(3, "mask erode thread started for segment %d", segment);
 
     while (1)
     {
@@ -877,7 +877,7 @@ static void mask_filter_thread( void *thread_args_v )
     pv = thread_args->pv;
     segment = thread_args->segment;
 
-    hb_log("mask filter thread started for segment %d", segment);
+    hb_deep_log(3, "mask filter thread started for segment %d", segment);
 
     while (1)
     {
@@ -980,7 +980,7 @@ static void decomb_check_thread( void *thread_args_v )
     pv = thread_args->pv;
     segment = thread_args->segment;
 
-    hb_log("decomb check thread started for segment %d", segment);
+    hb_deep_log(3, "decomb check thread started for segment %d", segment);
 
     while (1)
     {
@@ -1030,7 +1030,7 @@ static void decomb_filter_thread( void *thread_args_v )
     pv = thread_args->pv;
     segment = thread_args->segment;
 
-    hb_log("decomb filter thread started for segment %d", segment);
+    hb_deep_log(3, "decomb filter thread started for segment %d", segment);
 
     while (1)
     {
index 0402a65a6efc77f3b0c9db09e1fcc630165123a4..6f1cf62a1eb1eb6be2d8ef403fba75bfe8b420b1 100644 (file)
@@ -458,7 +458,7 @@ static void eedi2_filter_thread( void *thread_args_v )
     pv = thread_args->pv;
     plane = thread_args->plane;
 
-    hb_log("eedi2 thread started for plane %d", plane);
+    hb_deep_log(3, "eedi2 thread started for plane %d", plane);
 
     while (1)
     {
@@ -698,7 +698,7 @@ static void yadif_decomb_filter_thread( void *thread_args_v )
     pv = thread_args->pv;
     segment = thread_args->segment;
 
-    hb_log("yadif thread started for segment %d", segment);
+    hb_deep_log(3, "yadif thread started for segment %d", segment);
 
     while (1)
     {
@@ -1094,7 +1094,7 @@ static int hb_decomb_init( hb_filter_object_t * filter,
                     init->geometry.height * stride * sizeof(int), 16);
 
             if( !pv->cx2 || !pv->cy2 || !pv->cxy || !pv->tmpc )
-                hb_log("EEDI2: failed to malloc derivative arrays");
+                hb_error("EEDI2: failed to malloc derivative arrays");
             else
                 hb_log("EEDI2: successfully mallloced derivative arrays");
         }
index 70c3eca8177f7573de946667985675a04f609d69..63b1389736dcd18b3e797215bc735fe7b5572259 100644 (file)
@@ -386,7 +386,7 @@ hb_buffer_t * hb_buffer_init_internal( int size )
      */
     if( !( b = calloc( sizeof( hb_buffer_t ), 1 ) ) )
     {
-        hb_log( "out of memory" );
+        hb_error( "out of memory" );
         return NULL;
     }
 
@@ -398,7 +398,7 @@ hb_buffer_t * hb_buffer_init_internal( int size )
         b->data = av_malloc(b->alloc);
         if( !b->data )
         {
-            hb_log( "out of memory" );
+            hb_error( "out of memory" );
             free( b );
             return NULL;
         }
index 5571e811e5bf51d357a3c01f9dd05bbf5647f9cf..1afd55e3692773ae4e549a57776a92d26fa161ad 100644 (file)
@@ -73,7 +73,7 @@ void grayscale_filter_thread( void *thread_args_v )
     pv = thread_args->pv;
     segment = thread_args->segment;
 
-    hb_log("Grayscale thread started for segment %d", segment);
+    hb_deep_log(3, "Grayscale thread started for segment %d", segment);
 
     while( run )
     {
index 4a0621ecc3a2b6d765c6b2b8f392f3d965459127..d8e5aa01a94027981a5fa4d0fdd223503ff1ad47 100644 (file)
@@ -1099,7 +1099,7 @@ static void nlmeans_filter_thread(void *thread_args_v)
     hb_filter_private_t *pv = thread_data->pv;
     int segment = thread_data->segment;
 
-    hb_log("NLMeans thread started for segment %d", segment);
+    hb_deep_log(3, "NLMeans thread started for segment %d", segment);
 
     while (1)
     {
index ab545eab00262178411262f28ded372e60cc5202..a0533fd59c8a693ad84cc3962c592622a913d472 100644 (file)
@@ -34,21 +34,21 @@ AMF_RESULT check_component_available(const wchar_t *componentID)
     if(!init_fun)
     {
         result = AMF_FAIL;
-        hb_log("VCE: Load Library Failed");
+        hb_error("VCE: Load Library Failed");
         goto clean;
     }
 
     result = init_fun(AMF_FULL_VERSION, &factory);
     if(result != AMF_OK)
     {
-        hb_log("VCE: Init Failed");
+        hb_error("VCE: Init Failed");
         goto clean;
     }
 
     result = factory->pVtbl->CreateContext(factory, &context);
     if(result != AMF_OK)
     {
-        hb_log("VCE: Context Failed");
+        hb_error("VCE: Context Failed");
         goto clean;
     }
 
@@ -56,7 +56,7 @@ AMF_RESULT check_component_available(const wchar_t *componentID)
     if (result != AMF_OK) {
         result = context->pVtbl->InitDX9(context, NULL);
         if (result != AMF_OK) {
-            hb_log("VCE: DX11 and DX9 Failed");
+            hb_error("VCE: DX11 and DX9 Failed");
             goto clean;
         }
     }