diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-09 17:02:31 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-09 17:02:31 +0200 |
commit | 3c6ffd36bc58c05875957a509117c3136511d0d7 (patch) | |
tree | eeec23a3dd4f2811a3c3dc3f5af6ecd914a71132 /src/experiment-player.h | |
parent | 0a6869f2d4bfd639fac3c62953b3d2274bcedae9 (diff) | |
download | experiment-player-3c6ffd36bc58c05875957a509117c3136511d0d7.tar.gz |
use only filenames instead of URIs when working with the VLC player
* under windows, "C:\..." paths are constructed for the quickopen-menu,
they are not accepted by libvlc_media_new_location()
* support both loading filenames and URIs
Diffstat (limited to 'src/experiment-player.h')
-rw-r--r-- | src/experiment-player.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/experiment-player.h b/src/experiment-player.h index e8a145f..9fb2faa 100644 --- a/src/experiment-player.h +++ b/src/experiment-player.h @@ -3,7 +3,7 @@ #include <gtk/gtk.h> -gboolean load_media_file(const gchar *uri); +gboolean load_media_file(const gchar *file); extern GtkWidget *player_window; |