mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-24 16:18:16 +00:00
Fix code indentation
This commit is contained in:
parent
595392d187
commit
79c13988e4
7 changed files with 13 additions and 12 deletions
|
@ -131,8 +131,8 @@ G_DEFINE_TYPE (GstDtsDec, gst_dtsdec, GST_TYPE_AUDIO_DECODER);
|
||||||
static gboolean gst_dtsdec_start (GstAudioDecoder * dec);
|
static gboolean gst_dtsdec_start (GstAudioDecoder * dec);
|
||||||
static gboolean gst_dtsdec_stop (GstAudioDecoder * dec);
|
static gboolean gst_dtsdec_stop (GstAudioDecoder * dec);
|
||||||
static gboolean gst_dtsdec_set_format (GstAudioDecoder * bdec, GstCaps * caps);
|
static gboolean gst_dtsdec_set_format (GstAudioDecoder * bdec, GstCaps * caps);
|
||||||
static GstFlowReturn gst_dtsdec_parse (GstAudioDecoder * dec, GstAdapter * adapter,
|
static GstFlowReturn gst_dtsdec_parse (GstAudioDecoder * dec,
|
||||||
gint * offset, gint * length);
|
GstAdapter * adapter, gint * offset, gint * length);
|
||||||
static GstFlowReturn gst_dtsdec_handle_frame (GstAudioDecoder * dec,
|
static GstFlowReturn gst_dtsdec_handle_frame (GstAudioDecoder * dec,
|
||||||
GstBuffer * buffer);
|
GstBuffer * buffer);
|
||||||
|
|
||||||
|
|
|
@ -93,8 +93,8 @@ static void gst_faad_reset (GstFaad * faad);
|
||||||
static gboolean gst_faad_start (GstAudioDecoder * dec);
|
static gboolean gst_faad_start (GstAudioDecoder * dec);
|
||||||
static gboolean gst_faad_stop (GstAudioDecoder * dec);
|
static gboolean gst_faad_stop (GstAudioDecoder * dec);
|
||||||
static gboolean gst_faad_set_format (GstAudioDecoder * dec, GstCaps * caps);
|
static gboolean gst_faad_set_format (GstAudioDecoder * dec, GstCaps * caps);
|
||||||
static GstFlowReturn gst_faad_parse (GstAudioDecoder * dec, GstAdapter * adapter,
|
static GstFlowReturn gst_faad_parse (GstAudioDecoder * dec,
|
||||||
gint * offset, gint * length);
|
GstAdapter * adapter, gint * offset, gint * length);
|
||||||
static GstFlowReturn gst_faad_handle_frame (GstAudioDecoder * dec,
|
static GstFlowReturn gst_faad_handle_frame (GstAudioDecoder * dec,
|
||||||
GstBuffer * buffer);
|
GstBuffer * buffer);
|
||||||
static void gst_faad_flush (GstAudioDecoder * dec, gboolean hard);
|
static void gst_faad_flush (GstAudioDecoder * dec, gboolean hard);
|
||||||
|
|
|
@ -1176,7 +1176,8 @@ error_get_result:
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
gst_ks_video_device_postprocess_frame (GstKsVideoDevice * self, GstBuffer ** bufptr)
|
gst_ks_video_device_postprocess_frame (GstKsVideoDevice * self,
|
||||||
|
GstBuffer ** bufptr)
|
||||||
{
|
{
|
||||||
GstKsVideoDevicePrivate *priv = GST_KS_VIDEO_DEVICE_GET_PRIVATE (self);
|
GstKsVideoDevicePrivate *priv = GST_KS_VIDEO_DEVICE_GET_PRIVATE (self);
|
||||||
GstBuffer *buf = *bufptr;
|
GstBuffer *buf = *bufptr;
|
||||||
|
|
Loading…
Reference in a new issue