Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
480800a0
Commit
480800a0
authored
Jun 02, 2011
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Used vlc_custom_create() to create vout_display_t objects.
It allows to give them a category (vout display).
parent
55f46a92
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/video_output/display.c
src/video_output/display.c
+2
-1
No files found.
src/video_output/display.c
View file @
480800a0
...
...
@@ -100,7 +100,8 @@ static vout_display_t *vout_display_New(vlc_object_t *obj,
vout_display_owner_t
*
owner
)
{
/* */
vout_display_t
*
vd
=
vlc_object_create
(
obj
,
sizeof
(
*
vd
));
vout_display_t
*
vd
=
vlc_custom_create
(
obj
,
sizeof
(
*
vd
),
VLC_OBJECT_GENERIC
,
"vout display"
);
/* */
video_format_Copy
(
&
vd
->
source
,
fmt
);
...
...
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