va: codestyle: Clear all tabs in header files

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1587>
This commit is contained in:
He Junyan 2020-09-21 23:08:05 +08:00
parent 410938a069
commit ae8f97ae34
3 changed files with 23 additions and 23 deletions

View file

@ -68,7 +68,7 @@ gboolean gst_va_allocator_try (GstAllocator * alloca
GstVaAllocationParams * params);
VASurfaceID gst_va_memory_get_surface (GstMemory * mem,
GstVideoInfo * info);
GstVideoInfo * info);
VASurfaceID gst_va_buffer_get_surface (GstBuffer * buffer,
GstVideoInfo * info);

View file

@ -49,21 +49,21 @@ gboolean gst_va_decoder_set_format (GstVaDecoder * self,
GstCaps * gst_va_decoder_get_srcpad_caps (GstVaDecoder * self);
GstCaps * gst_va_decoder_get_sinkpad_caps (GstVaDecoder * self);
gboolean gst_va_decoder_has_profile (GstVaDecoder * self,
VAProfile profile);
VAProfile profile);
gint gst_va_decoder_get_mem_types (GstVaDecoder * self);
GArray * gst_va_decoder_get_surface_formats (GstVaDecoder * self);
gboolean gst_va_decoder_add_param_buffer (GstVaDecoder * self,
GstVaDecodePicture * pic,
gint type,
gpointer data,
gsize size);
GstVaDecodePicture * pic,
gint type,
gpointer data,
gsize size);
gboolean gst_va_decoder_add_slice_buffer (GstVaDecoder * self,
GstVaDecodePicture * pic,
gpointer params_data,
gsize params_size,
gpointer slice_data,
gsize slice_size);
GstVaDecodePicture * pic,
gpointer params_data,
gsize params_size,
gpointer slice_data,
gsize slice_size);
gboolean gst_va_decoder_decode (GstVaDecoder * self,
GstVaDecodePicture * pic);
gboolean gst_va_decoder_destroy_buffers (GstVaDecoder * self,

View file

@ -25,23 +25,23 @@
G_BEGIN_DECLS
gboolean gst_va_ensure_element_data (gpointer element,
const gchar *render_device_path,
GstVaDisplay ** display_ptr);
const gchar *render_device_path,
GstVaDisplay ** display_ptr);
gboolean gst_va_handle_set_context (GstElement * element,
GstContext * context,
const gchar *render_device_path,
GstVaDisplay ** display_ptr);
GstContext * context,
const gchar *render_device_path,
GstVaDisplay ** display_ptr);
gboolean gst_va_handle_context_query (GstElement * element,
GstQuery * query,
GstVaDisplay * display);
GstQuery * query,
GstVaDisplay * display);
void gst_va_element_propagate_display_context (GstElement * element,
GstVaDisplay * display);
GstVaDisplay * display);
gboolean gst_context_get_va_display (GstContext * context,
const gchar * type_name,
const gchar * render_device_path,
GstVaDisplay ** display_ptr);
const gchar * type_name,
const gchar * render_device_path,
GstVaDisplay ** display_ptr);
void gst_context_set_va_display (GstContext * context,
GstVaDisplay * display);
GstVaDisplay * display);
G_END_DECLS