]> granicus.if.org Git - handbrake/commitdiff
QSV: small change to the filter names.
authorRodeo <tdskywalker@gmail.com>
Fri, 26 Jul 2013 16:07:46 +0000 (16:07 +0000)
committerRodeo <tdskywalker@gmail.com>
Fri, 26 Jul 2013 16:07:46 +0000 (16:07 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/branches/qsv@5664 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/qsv_filter.c
libhb/qsv_filter_pp.c

index 49755e63e323ff4035e70c1acf3a397e02443194..2863a949e0f76ed423a0a270d8e5bd6fd6c9b5f6 100644 (file)
@@ -70,7 +70,7 @@ hb_filter_object_t hb_filter_qsv =
 {
     .id            = HB_FILTER_QSV,
     .enforce_order = 1,
-    .name          = "Intel Quick Sync VPP Filter",
+    .name          = "Quick Sync Video VPP",
     .settings      = NULL,
     .init          = hb_qsv_filter_init,
     .work          = hb_qsv_filter_work,
index 84006a15edfdba14909e1a12bbbd42e35e9d529a..30aaa8d11bd643f115f9c92dfded6bf01d1b4ba3 100644 (file)
@@ -82,7 +82,7 @@ hb_filter_object_t hb_filter_qsv_pre =
 {
     .id            = HB_FILTER_QSV_PRE,
     .enforce_order = 1,
-    .name          = "QSV User filter Pre",
+    .name          = "Quick Sync Video user filter (pre)",
     .settings      = NULL,
     .init          = hb_qsv_filter_pre_init,
     .work          = hb_qsv_filter_pre_work,
@@ -94,7 +94,7 @@ hb_filter_object_t hb_filter_qsv_post =
 {
     .id            = HB_FILTER_QSV_POST,
     .enforce_order = 1,
-    .name          = "QSV User filter Post",
+    .name          = "Quick Sync Video user filter (post)",
     .settings      = NULL,
     .init          = hb_qsv_filter_post_init,
     .work          = hb_qsv_filter_post_work,
@@ -271,8 +271,7 @@ static int hb_qsv_filter_pre_info( hb_filter_object_t * filter,
     if( !pv )
         return 0;
 
-    sprintf( info->human_readable_desc,
-        "QSV PRE filter" );
+    sprintf(info->human_readable_desc, "copy data to system memory");
 
     return 0;
 }
@@ -553,8 +552,7 @@ static int hb_qsv_filter_post_info( hb_filter_object_t * filter,
     if( !pv )
         return 0;
 
-    sprintf( info->human_readable_desc,
-        "QSV POST filter" );
+    sprintf(info->human_readable_desc, "copy data to Quick Sync Video memory");
 
     return 0;
 }