mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
amfcodec: Fix typos
Fixing typo surfrace -> surface Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3378>
This commit is contained in:
parent
93b6cf7adb
commit
b36b9c7821
2 changed files with 6 additions and 6 deletions
|
@ -347,7 +347,7 @@ static gboolean gst_amf_h264_enc_set_format (GstAmfEncoder * encoder,
|
||||||
GstVideoCodecState * state, gpointer component);
|
GstVideoCodecState * state, gpointer component);
|
||||||
static gboolean gst_amf_h264_enc_set_output_state (GstAmfEncoder * encoder,
|
static gboolean gst_amf_h264_enc_set_output_state (GstAmfEncoder * encoder,
|
||||||
GstVideoCodecState * state, gpointer component);
|
GstVideoCodecState * state, gpointer component);
|
||||||
static gboolean gst_amf_h264_enc_set_surfrace_prop (GstAmfEncoder * encoder,
|
static gboolean gst_amf_h264_enc_set_surface_prop (GstAmfEncoder * encoder,
|
||||||
GstVideoCodecFrame * frame, gpointer surface);
|
GstVideoCodecFrame * frame, gpointer surface);
|
||||||
static GstBuffer *gst_amf_h264_enc_create_output_buffer (GstAmfEncoder *
|
static GstBuffer *gst_amf_h264_enc_create_output_buffer (GstAmfEncoder *
|
||||||
encoder, gpointer data, gboolean * sync_point);
|
encoder, gpointer data, gboolean * sync_point);
|
||||||
|
@ -455,7 +455,7 @@ gst_amf_h264_enc_class_init (GstAmfH264EncClass * klass, gpointer data)
|
||||||
amf_class->set_output_state =
|
amf_class->set_output_state =
|
||||||
GST_DEBUG_FUNCPTR (gst_amf_h264_enc_set_output_state);
|
GST_DEBUG_FUNCPTR (gst_amf_h264_enc_set_output_state);
|
||||||
amf_class->set_surface_prop =
|
amf_class->set_surface_prop =
|
||||||
GST_DEBUG_FUNCPTR (gst_amf_h264_enc_set_surfrace_prop);
|
GST_DEBUG_FUNCPTR (gst_amf_h264_enc_set_surface_prop);
|
||||||
amf_class->create_output_buffer =
|
amf_class->create_output_buffer =
|
||||||
GST_DEBUG_FUNCPTR (gst_amf_h264_enc_create_output_buffer);
|
GST_DEBUG_FUNCPTR (gst_amf_h264_enc_create_output_buffer);
|
||||||
amf_class->check_reconfigure =
|
amf_class->check_reconfigure =
|
||||||
|
@ -1210,7 +1210,7 @@ gst_amf_h264_enc_set_output_state (GstAmfEncoder * encoder,
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_amf_h264_enc_set_surfrace_prop (GstAmfEncoder * encoder,
|
gst_amf_h264_enc_set_surface_prop (GstAmfEncoder * encoder,
|
||||||
GstVideoCodecFrame * frame, gpointer surface)
|
GstVideoCodecFrame * frame, gpointer surface)
|
||||||
{
|
{
|
||||||
GstAmfH264Enc *self = GST_AMF_H264_ENC (encoder);
|
GstAmfH264Enc *self = GST_AMF_H264_ENC (encoder);
|
||||||
|
|
|
@ -340,7 +340,7 @@ static gboolean gst_amf_h265_enc_set_format (GstAmfEncoder * encoder,
|
||||||
GstVideoCodecState * state, gpointer component);
|
GstVideoCodecState * state, gpointer component);
|
||||||
static gboolean gst_amf_h265_enc_set_output_state (GstAmfEncoder * encoder,
|
static gboolean gst_amf_h265_enc_set_output_state (GstAmfEncoder * encoder,
|
||||||
GstVideoCodecState * state, gpointer component);
|
GstVideoCodecState * state, gpointer component);
|
||||||
static gboolean gst_amf_h265_enc_set_surfrace_prop (GstAmfEncoder * encoder,
|
static gboolean gst_amf_h265_enc_set_surface_prop (GstAmfEncoder * encoder,
|
||||||
GstVideoCodecFrame * frame, gpointer surface);
|
GstVideoCodecFrame * frame, gpointer surface);
|
||||||
static GstBuffer *gst_amf_h265_enc_create_output_buffer (GstAmfEncoder *
|
static GstBuffer *gst_amf_h265_enc_create_output_buffer (GstAmfEncoder *
|
||||||
encoder, gpointer data, gboolean * sync_point);
|
encoder, gpointer data, gboolean * sync_point);
|
||||||
|
@ -451,7 +451,7 @@ gst_amf_h265_enc_class_init (GstAmfH265EncClass * klass, gpointer data)
|
||||||
amf_class->set_output_state =
|
amf_class->set_output_state =
|
||||||
GST_DEBUG_FUNCPTR (gst_amf_h265_enc_set_output_state);
|
GST_DEBUG_FUNCPTR (gst_amf_h265_enc_set_output_state);
|
||||||
amf_class->set_surface_prop =
|
amf_class->set_surface_prop =
|
||||||
GST_DEBUG_FUNCPTR (gst_amf_h265_enc_set_surfrace_prop);
|
GST_DEBUG_FUNCPTR (gst_amf_h265_enc_set_surface_prop);
|
||||||
amf_class->create_output_buffer =
|
amf_class->create_output_buffer =
|
||||||
GST_DEBUG_FUNCPTR (gst_amf_h265_enc_create_output_buffer);
|
GST_DEBUG_FUNCPTR (gst_amf_h265_enc_create_output_buffer);
|
||||||
amf_class->check_reconfigure =
|
amf_class->check_reconfigure =
|
||||||
|
@ -881,7 +881,7 @@ gst_amf_h265_enc_set_output_state (GstAmfEncoder * encoder,
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_amf_h265_enc_set_surfrace_prop (GstAmfEncoder * encoder,
|
gst_amf_h265_enc_set_surface_prop (GstAmfEncoder * encoder,
|
||||||
GstVideoCodecFrame * frame, gpointer surface)
|
GstVideoCodecFrame * frame, gpointer surface)
|
||||||
{
|
{
|
||||||
GstAmfH265Enc *self = GST_AMF_H265_ENC (encoder);
|
GstAmfH265Enc *self = GST_AMF_H265_ENC (encoder);
|
||||||
|
|
Loading…
Reference in a new issue