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
8c967b01
Commit
8c967b01
authored
Apr 03, 2009
by
Sébastien Escudier
Committed by
Rémi Denis-Courmont
Apr 04, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove uneeded exceptions
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
70bd7e61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
7 deletions
+0
-7
src/control/vlm.c
src/control/vlm.c
+0
-7
No files found.
src/control/vlm.c
View file @
8c967b01
...
...
@@ -424,7 +424,6 @@ float libvlc_vlm_get_media_instance_position( libvlc_instance_t *p_instance,
vlm_media_instance_Delete
(
p_mi
);
return
result
;
}
libvlc_exception_raise
(
p_exception
,
"Unable to get position attribute"
);
return
result
;
}
...
...
@@ -441,7 +440,6 @@ int libvlc_vlm_get_media_instance_time( libvlc_instance_t *p_instance,
vlm_media_instance_Delete
(
p_mi
);
return
result
;
}
libvlc_exception_raise
(
p_exception
,
"Unable to get time attribute"
);
return
result
;
}
...
...
@@ -459,7 +457,6 @@ int libvlc_vlm_get_media_instance_length( libvlc_instance_t *p_instance,
vlm_media_instance_Delete
(
p_mi
);
return
result
;
}
libvlc_exception_raise
(
p_exception
,
"Unable to get length attribute"
);
return
result
;
}
...
...
@@ -476,7 +473,6 @@ int libvlc_vlm_get_media_instance_rate( libvlc_instance_t *p_instance,
vlm_media_instance_Delete
(
p_mi
);
return
result
;
}
libvlc_exception_raise
(
p_exception
,
"Unable to get rate attribute"
);
return
result
;
}
...
...
@@ -492,7 +488,6 @@ int libvlc_vlm_get_media_instance_title( libvlc_instance_t *p_instance,
vlm_media_instance_Delete
(
p_mi
);
return
result
;
}
libvlc_exception_raise
(
p_exception
,
"Unable to get title attribute"
);
return
result
;
}
...
...
@@ -509,7 +504,6 @@ int libvlc_vlm_get_media_instance_chapter( libvlc_instance_t *p_instance,
vlm_media_instance_Delete
(
p_mi
);
return
result
;
}
libvlc_exception_raise
(
p_exception
,
"Unable to get chapter attribute"
);
return
result
;
}
...
...
@@ -526,6 +520,5 @@ int libvlc_vlm_get_media_instance_seekable( libvlc_instance_t *p_instance,
vlm_media_instance_Delete
(
p_mi
);
return
result
;
}
libvlc_exception_raise
(
p_exception
,
"Unable to get seekable attribute"
);
return
result
;
}
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