Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
gst-libav
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
60
Issues
60
List
Boards
Labels
Service Desk
Milestones
Merge Requests
10
Merge Requests
10
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GStreamer
gst-libav
Commits
3a96bed6
Commit
3a96bed6
authored
Oct 01, 2009
by
Sebastian Dröge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpegenc: Use dash instead of underscore in property names
GLib internally converts them to dashs anyway.
parent
a185db8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ext/ffmpeg/gstffmpegenc.c
ext/ffmpeg/gstffmpegenc.c
+4
-4
No files found.
ext/ffmpeg/gstffmpegenc.c
View file @
3a96bed6
...
...
@@ -181,17 +181,17 @@ gst_ffmpegenc_class_init (GstFFMpegEncClass * klass)
"Target Video Bitrate"
,
0
,
G_MAXULONG
,
DEFAULT_VIDEO_BITRATE
,
G_PARAM_READWRITE
));
g_object_class_install_property
(
G_OBJECT_CLASS
(
klass
),
ARG_GOP_SIZE
,
g_param_spec_int
(
"gop
_
size"
,
"GOP Size"
,
g_param_spec_int
(
"gop
-
size"
,
"GOP Size"
,
"Number of frames within one GOP"
,
0
,
G_MAXINT
,
DEFAULT_VIDEO_GOP_SIZE
,
G_PARAM_READWRITE
));
g_object_class_install_property
(
G_OBJECT_CLASS
(
klass
),
ARG_ME_METHOD
,
g_param_spec_enum
(
"me
_
method"
,
"ME Method"
,
"Motion Estimation Method"
,
g_param_spec_enum
(
"me
-
method"
,
"ME Method"
,
"Motion Estimation Method"
,
GST_TYPE_ME_METHOD
,
ME_EPZS
,
G_PARAM_READWRITE
));
g_object_class_install_property
(
G_OBJECT_CLASS
(
klass
),
ARG_BUFSIZE
,
g_param_spec_ulong
(
"buffer
_
size"
,
"Buffer Size"
,
g_param_spec_ulong
(
"buffer
-
size"
,
"Buffer Size"
,
"Size of the video buffers"
,
0
,
G_MAXULONG
,
0
,
G_PARAM_READWRITE
));
g_object_class_install_property
(
G_OBJECT_CLASS
(
klass
),
ARG_RTP_PAYLOAD_SIZE
,
g_param_spec_ulong
(
"rtp
_payload_
size"
,
ARG_RTP_PAYLOAD_SIZE
,
g_param_spec_ulong
(
"rtp
-payload-
size"
,
"RTP Payload Size"
,
"Target GOB length"
,
0
,
G_MAXULONG
,
0
,
G_PARAM_READWRITE
));
...
...
Write
Preview
Markdown
is supported
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