mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
ext, gst: fix indentation
This commit is contained in:
parent
e6d188967a
commit
cae9ec0ad8
4 changed files with 9 additions and 8 deletions
|
@ -234,7 +234,7 @@ jack_shutdown_cb (void *arg)
|
|||
static int
|
||||
jack_sample_rate_cb (jack_nframes_t nframes, void *arg)
|
||||
{
|
||||
jack_shutdown_cb(arg);
|
||||
jack_shutdown_cb (arg);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -242,7 +242,7 @@ jack_sample_rate_cb (jack_nframes_t nframes, void *arg)
|
|||
static int
|
||||
jack_buffer_size_cb (jack_nframes_t nframes, void *arg)
|
||||
{
|
||||
jack_shutdown_cb(arg);
|
||||
jack_shutdown_cb (arg);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -11,7 +11,8 @@
|
|||
#include "dboolhuff.h"
|
||||
|
||||
#ifdef _MSC_VER
|
||||
__declspec(align(16)) const unsigned char vp8_norm[256] = {
|
||||
__declspec (align (16))
|
||||
const unsigned char vp8_norm[256] = {
|
||||
#else
|
||||
const unsigned char vp8_norm[256] __attribute__ ((aligned (16))) = {
|
||||
#endif
|
||||
|
|
|
@ -123,7 +123,7 @@ gst_video_flip_video_direction_interface_init (GstVideoDirectionInterface *
|
|||
#define gst_video_flip_parent_class parent_class
|
||||
G_DEFINE_TYPE_WITH_CODE (GstVideoFlip, gst_video_flip, GST_TYPE_VIDEO_FILTER,
|
||||
G_IMPLEMENT_INTERFACE (GST_TYPE_VIDEO_DIRECTION,
|
||||
gst_video_flip_video_direction_interface_init))
|
||||
gst_video_flip_video_direction_interface_init));
|
||||
|
||||
static GstCaps *
|
||||
gst_video_flip_transform_caps (GstBaseTransform * trans,
|
||||
|
|
Loading…
Reference in a new issue