Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
00a4589d
Commit
00a4589d
authored
Jun 17, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
conrtol/media_descriptor.c: Use VLC_FALSE and VLC_TRUE.
parent
d6346a3b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/control/media_descriptor.c
src/control/media_descriptor.c
+2
-2
No files found.
src/control/media_descriptor.c
View file @
00a4589d
...
@@ -38,7 +38,7 @@ static void preparse_if_needed( libvlc_media_descriptor_t *p_media_desc )
...
@@ -38,7 +38,7 @@ static void preparse_if_needed( libvlc_media_descriptor_t *p_media_desc )
{
{
input_Preparse
(
p_media_desc
->
p_libvlc_instance
->
p_libvlc_int
,
input_Preparse
(
p_media_desc
->
p_libvlc_instance
->
p_libvlc_int
,
p_media_desc
->
p_input_item
);
p_media_desc
->
p_input_item
);
p_media_desc
->
b_preparsed
=
TRUE
;
p_media_desc
->
b_preparsed
=
VLC_
TRUE
;
}
}
}
}
...
@@ -61,7 +61,7 @@ libvlc_media_descriptor_t * libvlc_media_descriptor_new(
...
@@ -61,7 +61,7 @@ libvlc_media_descriptor_t * libvlc_media_descriptor_new(
p_media_desc
=
malloc
(
sizeof
(
libvlc_input_t
)
);
p_media_desc
=
malloc
(
sizeof
(
libvlc_input_t
)
);
p_media_desc
->
p_libvlc_instance
=
p_instance
;
p_media_desc
->
p_libvlc_instance
=
p_instance
;
p_media_desc
->
p_input_item
=
p_input_item
;
p_media_desc
->
p_input_item
=
p_input_item
;
p_media_desc
->
b_preparsed
=
FALSE
;
p_media_desc
->
b_preparsed
=
VLC_
FALSE
;
return
p_media_desc
;
return
p_media_desc
;
}
}
...
...
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