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
16511fee
Commit
16511fee
authored
Feb 25, 2010
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test: Report when preparsed is working only when it works.
parent
ba1fea8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
test/libvlc/media.c
test/libvlc/media.c
+5
-3
No files found.
test/libvlc/media.c
View file @
16511fee
...
...
@@ -57,15 +57,17 @@ static void test_media_preparsed(const char** argv, int argc)
while
(
!
received
);
// We are good, now check Elementary Stream info.
libvlc_media_track_info_t
*
tracks
;
libvlc_media_track_info_t
*
tracks
=
NULL
;
int
num
=
libvlc_media_get_tracks_info
(
media
,
&
tracks
);
#warning libvlc_media_get_tracks_info is a broken function.
// This is broken.
// assert(num == 1);
printf
(
"WARNING: libvlc_media_get_tracks_info is not working."
);
if
(
num
!=
1
)
printf
(
"WARNING: libvlc_media_get_tracks_info is not working."
);
free
(
tracks
);
if
(
num
>
0
)
free
(
tracks
);
libvlc_media_release
(
media
);
libvlc_release
(
vlc
);
...
...
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