summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVíctor Manuel Jáquez Leal <victorx.jaquez@intel.com>2016-08-02 11:32:19 +0200
committerVíctor Manuel Jáquez Leal <victorx.jaquez@intel.com>2016-10-25 19:24:34 +0200
commit43dd4b7452137d996fb335deefd64f04d7d2092d (patch)
tree84ba0f25d69ce9b22db5f8aeb0ac6e351957c252
parent4f4e0a8f36cbcd04054facb3e4cb2f698bb13c6b (diff)
vaapiencode: h264, h265: rename codec name
So encoder and decoders have the same codec name. https://bugzilla.gnome.org/show_bug.cgi?id=773497
-rw-r--r--gst/vaapi/gstvaapiencode_h264.c4
-rw-r--r--gst/vaapi/gstvaapiencode_h265.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/gst/vaapi/gstvaapiencode_h264.c b/gst/vaapi/gstvaapiencode_h264.c
index d07f4ffe..44a857d8 100644
--- a/gst/vaapi/gstvaapiencode_h264.c
+++ b/gst/vaapi/gstvaapiencode_h264.c
@@ -44,7 +44,7 @@
#include "gstvaapivideomemory.h"
#define GST_PLUGIN_NAME "vaapih264enc"
-#define GST_PLUGIN_DESC "A VA-API based H.264 video encoder"
+#define GST_PLUGIN_DESC "A VA-API based H264 video encoder"
GST_DEBUG_CATEGORY_STATIC (gst_vaapi_h264_encode_debug);
#define GST_CAT_DEFAULT gst_vaapi_h264_encode_debug
@@ -400,7 +400,7 @@ gst_vaapiencode_h264_class_init (GstVaapiEncodeH264Class * klass)
encode_class->alloc_buffer = gst_vaapiencode_h264_alloc_buffer;
gst_element_class_set_static_metadata (element_class,
- "VA-API H.264 encoder",
+ "VA-API H264 encoder",
"Codec/Encoder/Video",
GST_PLUGIN_DESC, "Wind Yuan <feng.yuan@intel.com>");
diff --git a/gst/vaapi/gstvaapiencode_h265.c b/gst/vaapi/gstvaapiencode_h265.c
index 49115754..58219bd5 100644
--- a/gst/vaapi/gstvaapiencode_h265.c
+++ b/gst/vaapi/gstvaapiencode_h265.c
@@ -43,7 +43,7 @@
#include "gstvaapivideomemory.h"
#define GST_PLUGIN_NAME "vaapih265enc"
-#define GST_PLUGIN_DESC "A VA-API based H.265 video encoder"
+#define GST_PLUGIN_DESC "A VA-API based H265 video encoder"
GST_DEBUG_CATEGORY_STATIC (gst_vaapi_h265_encode_debug);
#define GST_CAT_DEFAULT gst_vaapi_h265_encode_debug
@@ -399,7 +399,7 @@ gst_vaapiencode_h265_class_init (GstVaapiEncodeH265Class * klass)
encode_class->alloc_buffer = gst_vaapiencode_h265_alloc_buffer;
gst_element_class_set_static_metadata (element_class,
- "VA-API H.265 encoder",
+ "VA-API H265 encoder",
"Codec/Encoder/Video",
GST_PLUGIN_DESC,
"Sreerenj Balachandran <sreerenj.balachandran@intel.com>");