Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GStreamer
gstreamer-rs-sys
Commits
f9ff027a
Commit
f9ff027a
authored
Oct 30, 2018
by
Jordan Petridіs
🌱
Committed by
Sebastian Dröge
Oct 30, 2018
Browse files
gir: Ignore VERSION constants
parent
b4127c7d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Gir_Gst.toml
View file @
f9ff027a
...
...
@@ -6,6 +6,13 @@ min_cfg_version = "1.0"
target_path
=
"gstreamer-sys"
work_mode
=
"sys"
ignore
=
[
"Gst.VERSION_MAJOR"
,
"Gst.VERSION_MINOR"
,
"Gst.VERSION_MICRO"
,
"Gst.VERSION_NANO"
,
]
external_libraries
=
[
"GLib"
,
"GObject"
,
...
...
Gir_GstPbutils.toml
View file @
f9ff027a
...
...
@@ -6,6 +6,13 @@ min_cfg_version = "1.0"
target_path
=
"gstreamer-pbutils-sys"
work_mode
=
"sys"
ignore
=
[
"GstPbutils.PLUGINS_BASE_VERSION_MAJOR"
,
"GstPbutils.PLUGINS_BASE_VERSION_MINOR"
,
"GstPbutils.PLUGINS_BASE_VERSION_MICRO"
,
"GstPbutils.PLUGINS_BASE_VERSION_NANO"
]
external_libraries
=
[
"GLib"
,
"GObject"
,
...
...
gstreamer-pbutils-sys/src/lib.rs
View file @
f9ff027a
...
...
@@ -69,10 +69,6 @@ pub const GST_ENCODING_CATEGORY_DEVICE: *const c_char = b"device\0" as *const u8
pub
const
GST_ENCODING_CATEGORY_FILE_EXTENSION
:
*
const
c_char
=
b"file-extension
\0
"
as
*
const
u8
as
*
const
c_char
;
pub
const
GST_ENCODING_CATEGORY_ONLINE_SERVICE
:
*
const
c_char
=
b"online-service
\0
"
as
*
const
u8
as
*
const
c_char
;
pub
const
GST_ENCODING_CATEGORY_STORAGE_EDITING
:
*
const
c_char
=
b"storage-editing
\0
"
as
*
const
u8
as
*
const
c_char
;
pub
const
GST_PLUGINS_BASE_VERSION_MAJOR
:
c_int
=
1
;
pub
const
GST_PLUGINS_BASE_VERSION_MICRO
:
c_int
=
2
;
pub
const
GST_PLUGINS_BASE_VERSION_MINOR
:
c_int
=
14
;
pub
const
GST_PLUGINS_BASE_VERSION_NANO
:
c_int
=
0
;
// Flags
pub
type
GstDiscovererSerializeFlags
=
c_uint
;
...
...
gstreamer-pbutils-sys/tests/abi.rs
View file @
f9ff027a
...
...
@@ -286,10 +286,6 @@ const RUST_CONSTANTS: &[(&str, &str)] = &[
(
"GST_INSTALL_PLUGINS_STARTED_OK"
,
"200"
),
(
"GST_INSTALL_PLUGINS_SUCCESS"
,
"0"
),
(
"GST_INSTALL_PLUGINS_USER_ABORT"
,
"4"
),
(
"GST_PLUGINS_BASE_VERSION_MAJOR"
,
"1"
),
(
"GST_PLUGINS_BASE_VERSION_MICRO"
,
"2"
),
(
"GST_PLUGINS_BASE_VERSION_MINOR"
,
"14"
),
(
"GST_PLUGINS_BASE_VERSION_NANO"
,
"0"
),
];
gstreamer-sys/src/lib.rs
View file @
f9ff027a
...
...
@@ -588,10 +588,6 @@ pub const GST_VALUE_EQUAL: c_int = 0;
pub
const
GST_VALUE_GREATER_THAN
:
c_int
=
1
;
pub
const
GST_VALUE_LESS_THAN
:
c_int
=
-
1
;
pub
const
GST_VALUE_UNORDERED
:
c_int
=
2
;
pub
const
GST_VERSION_MAJOR
:
c_int
=
1
;
pub
const
GST_VERSION_MICRO
:
c_int
=
1
;
pub
const
GST_VERSION_MINOR
:
c_int
=
14
;
pub
const
GST_VERSION_NANO
:
c_int
=
0
;
// Flags
pub
type
GstAllocatorFlags
=
c_uint
;
...
...
gstreamer-sys/tests/abi.rs
View file @
f9ff027a
...
...
@@ -1115,10 +1115,6 @@ const RUST_CONSTANTS: &[(&str, &str)] = &[
(
"GST_VALUE_GREATER_THAN"
,
"1"
),
(
"GST_VALUE_LESS_THAN"
,
"-1"
),
(
"GST_VALUE_UNORDERED"
,
"2"
),
(
"GST_VERSION_MAJOR"
,
"1"
),
(
"GST_VERSION_MICRO"
,
"1"
),
(
"GST_VERSION_MINOR"
,
"14"
),
(
"GST_VERSION_NANO"
,
"0"
),
];
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment