diff --git a/subprojects/gst-plugins-bad/sys/amfcodec/gstamfencoder.cpp b/subprojects/gst-plugins-bad/sys/amfcodec/gstamfencoder.cpp index a14cb92d5d..a0e3d9eee3 100644 --- a/subprojects/gst-plugins-bad/sys/amfcodec/gstamfencoder.cpp +++ b/subprojects/gst-plugins-bad/sys/amfcodec/gstamfencoder.cpp @@ -1068,9 +1068,10 @@ gst_amf_encoder_propose_allocation (GstVideoEncoder * encoder, GstQuery * query) return TRUE; } +/* *INDENT-OFF* */ void gst_amf_encoder_set_subclass_data (GstAmfEncoder * encoder, gint64 adapter_luid, - const wchar_t *codec_id) + const wchar_t * codec_id) { GstAmfEncoderPrivate *priv; @@ -1080,3 +1081,4 @@ gst_amf_encoder_set_subclass_data (GstAmfEncoder * encoder, gint64 adapter_luid, priv->adapter_luid = adapter_luid; priv->codec_id = codec_id; } +/* *INDENT-ON* */ diff --git a/subprojects/gst-plugins-bad/sys/d3d11/gstd3d11screencapturedevice.cpp b/subprojects/gst-plugins-bad/sys/d3d11/gstd3d11screencapturedevice.cpp index baf588a9de..381ac9e833 100644 --- a/subprojects/gst-plugins-bad/sys/d3d11/gstd3d11screencapturedevice.cpp +++ b/subprojects/gst-plugins-bad/sys/d3d11/gstd3d11screencapturedevice.cpp @@ -318,7 +318,9 @@ create_device (const DXGI_ADAPTER_DESC * adapter_desc, GstCaps *caps; gint width, height, left, top, right, bottom; GstStructure *props; - std::wstring_convert < std::codecvt_utf8 < wchar_t >, wchar_t >converter; + /* *INDENT-OFF* */ + std::wstring_convert < std::codecvt_utf8 < wchar_t >, wchar_t > converter; + /* *INDENT-ON* */ std::string device_name; std::string display_name; std::string device_path; diff --git a/subprojects/gst-plugins-bad/sys/mediafoundation/gstmfutils.cpp b/subprojects/gst-plugins-bad/sys/mediafoundation/gstmfutils.cpp index 3f85e04781..e76c4c82af 100644 --- a/subprojects/gst-plugins-bad/sys/mediafoundation/gstmfutils.cpp +++ b/subprojects/gst-plugins-bad/sys/mediafoundation/gstmfutils.cpp @@ -388,6 +388,7 @@ gst_mf_media_type_to_video_caps (IMFMediaType * media_type) SPEAKER_FRONT_LEFT_OF_CENTER | SPEAKER_FRONT_RIGHT_OF_CENTER) #endif +/* *INDENT-OFF* */ static struct { guint64 mf_pos; @@ -416,7 +417,6 @@ static struct {SPEAKER_TOP_BACK_RIGHT, GST_AUDIO_CHANNEL_POSITION_TOP_REAR_RIGHT} }; -/* *INDENT-OFF* */ static DWORD default_ch_masks[] = { 0, KSAUDIO_SPEAKER_MONO, diff --git a/subprojects/gst-plugins-bad/sys/wic/gstwicutils.cpp b/subprojects/gst-plugins-bad/sys/wic/gstwicutils.cpp index aa0cd865f6..fda79a1d7e 100644 --- a/subprojects/gst-plugins-bad/sys/wic/gstwicutils.cpp +++ b/subprojects/gst-plugins-bad/sys/wic/gstwicutils.cpp @@ -21,13 +21,12 @@ #include -/* *INDENT-OFF* */ -using namespace Microsoft::WRL; -/* *INDENT-ON* */ - GST_DEBUG_CATEGORY_EXTERN (gst_wic_utils_debug); #define GST_CAT_DEFAULT gst_wic_utils_debug +/* *INDENT-OFF* */ +using namespace Microsoft::WRL; + static struct { WICPixelFormatGUID guid; @@ -46,6 +45,7 @@ static struct {GUID_WICPixelFormat32bppBGRA, GST_VIDEO_FORMAT_BGRA}, {GUID_WICPixelFormat64bppRGBA, GST_VIDEO_FORMAT_RGBA64_LE}, }; +/* *INDENT-ON* */ gboolean gst_wic_pixel_format_to_gst (REFWICPixelFormatGUID guid,