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
bb62471f
Commit
bb62471f
authored
Dec 15, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to newest playlist API.
parent
c3e3de66
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
40 additions
and
37 deletions
+40
-37
modules/gui/pda/pda.c
modules/gui/pda/pda.c
+5
-4
modules/gui/pda/pda_callbacks.c
modules/gui/pda/pda_callbacks.c
+34
-28
modules/gui/pda/pda_callbacks.h
modules/gui/pda/pda_callbacks.h
+1
-1
modules/gui/pda/pda_support.h
modules/gui/pda/pda_support.h
+0
-4
No files found.
modules/gui/pda/pda.c
View file @
bb62471f
...
@@ -28,7 +28,9 @@
...
@@ -28,7 +28,9 @@
#include <errno.h>
/* ENOMEM */
#include <errno.h>
/* ENOMEM */
#include <vlc/vlc.h>
#include <vlc/vlc.h>
#include <vlc_input.h>
#include <vlc_interface.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <gtk/gtk.h>
#include <gtk/gtk.h>
...
@@ -293,7 +295,7 @@ static void Run( intf_thread_t *p_intf )
...
@@ -293,7 +295,7 @@ static void Run( intf_thread_t *p_intf )
G_TYPE_STRING
,
/* Filename */
G_TYPE_STRING
,
/* Filename */
G_TYPE_STRING
,
/* Time */
G_TYPE_STRING
,
/* Time */
G_TYPE_UINT
);
/* Hidden index */
G_TYPE_UINT
);
/* Hidden index */
PlaylistRebuildListStore
(
p_playlist_store
,
p_playlist
);
PlaylistRebuildListStore
(
p_
intf
,
p_
playlist_store
,
p_playlist
);
gtk_tree_view_set_model
(
GTK_TREE_VIEW
(
p_intf
->
p_sys
->
p_tvplaylist
),
GTK_TREE_MODEL
(
p_playlist_store
));
gtk_tree_view_set_model
(
GTK_TREE_VIEW
(
p_intf
->
p_sys
->
p_tvplaylist
),
GTK_TREE_MODEL
(
p_playlist_store
));
g_object_unref
(
p_playlist_store
);
g_object_unref
(
p_playlist_store
);
vlc_object_release
(
p_playlist
);
/* Free the playlist */
vlc_object_release
(
p_playlist
);
/* Free the playlist */
...
@@ -365,7 +367,7 @@ void GtkAutoPlayFile( vlc_object_t *p_this )
...
@@ -365,7 +367,7 @@ void GtkAutoPlayFile( vlc_object_t *p_this )
{
{
p_intf
=
(
intf_thread_t
*
)
p_list
->
p_values
[
i_index
].
p_object
;
p_intf
=
(
intf_thread_t
*
)
p_list
->
p_values
[
i_index
].
p_object
;
if
(
strcmp
(
MODULE_STRING
,
p_intf
->
p_module
->
psz_object_name
)
)
if
(
strcmp
(
MODULE_STRING
,
module_GetObjName
(
p_intf
->
p_module
)
)
)
{
{
continue
;
continue
;
}
}
...
@@ -434,7 +436,7 @@ static int Manage( intf_thread_t *p_intf )
...
@@ -434,7 +436,7 @@ static int Manage( intf_thread_t *p_intf )
G_TYPE_STRING
,
G_TYPE_STRING
,
G_TYPE_STRING
,
G_TYPE_STRING
,
G_TYPE_UINT
);
/* Hidden index */
G_TYPE_UINT
);
/* Hidden index */
PlaylistRebuildListStore
(
p_liststore
,
p_playlist
);
PlaylistRebuildListStore
(
p_
intf
,
p_
liststore
,
p_playlist
);
gtk_tree_view_set_model
(
p_intf
->
p_sys
->
p_tvplaylist
,
(
GtkTreeModel
*
)
p_liststore
);
gtk_tree_view_set_model
(
p_intf
->
p_sys
->
p_tvplaylist
,
(
GtkTreeModel
*
)
p_liststore
);
g_object_unref
(
p_liststore
);
g_object_unref
(
p_liststore
);
vlc_object_release
(
p_playlist
);
vlc_object_release
(
p_playlist
);
...
@@ -607,4 +609,3 @@ gint E_(GtkModeManage)( intf_thread_t * p_intf )
...
@@ -607,4 +609,3 @@ gint E_(GtkModeManage)( intf_thread_t * p_intf )
gtk_widget_set_sensitive
(
lookup_widget
(
p_intf
->
p_sys
->
p_window
,
"tbForward"
),
b_control
);
gtk_widget_set_sensitive
(
lookup_widget
(
p_intf
->
p_sys
->
p_window
,
"tbForward"
),
b_control
);
return
TRUE
;
return
TRUE
;
}
}
modules/gui/pda/pda_callbacks.c
View file @
bb62471f
...
@@ -25,7 +25,9 @@
...
@@ -25,7 +25,9 @@
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#include <sys/types.h>
/* off_t */
#include <sys/types.h>
/* off_t */
#include <vlc/vlc.h>
#include <vlc/vlc.h>
#include <vlc_input.h>
#include <vlc_interface.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
#include <vlc_playlist.h>
#include <vlc_vout.h>
#include <vlc_vout.h>
...
@@ -36,10 +38,6 @@
...
@@ -36,10 +38,6 @@
#include <pwd.h>
#include <pwd.h>
#include <grp.h>
#include <grp.h>
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <gtk/gtk.h>
#include <gtk/gtk.h>
#include "pda_callbacks.h"
#include "pda_callbacks.h"
...
@@ -85,7 +83,7 @@ void * E_(__GtkGetIntf)( GtkWidget * widget )
...
@@ -85,7 +83,7 @@ void * E_(__GtkGetIntf)( GtkWidget * widget )
return
p_data
;
return
p_data
;
}
}
void
PlaylistAddItem
(
GtkWidget
*
widget
,
gchar
*
name
,
char
**
ppsz_options
,
int
i_size
)
static
void
PlaylistAddItem
(
GtkWidget
*
widget
,
gchar
*
name
,
char
**
ppsz_options
,
int
i_size
)
{
{
intf_thread_t
*
p_intf
=
GtkGetIntf
(
widget
);
intf_thread_t
*
p_intf
=
GtkGetIntf
(
widget
);
playlist_t
*
p_playlist
;
playlist_t
*
p_playlist
;
...
@@ -118,7 +116,7 @@ void PlaylistAddItem(GtkWidget *widget, gchar *name, char **ppsz_options, int i_
...
@@ -118,7 +116,7 @@ void PlaylistAddItem(GtkWidget *widget, gchar *name, char **ppsz_options, int i_
gtk_list_store_set
(
GTK_LIST_STORE
(
p_play_model
),
&
p_play_iter
,
gtk_list_store_set
(
GTK_LIST_STORE
(
p_play_model
),
&
p_play_iter
,
0
,
name
,
/* Add path to it !!! */
0
,
name
,
/* Add path to it !!! */
1
,
"no info"
,
1
,
"no info"
,
2
,
p
_playlist
->
i_size
,
/* Hidden index. */
2
,
p
laylist_CurrentSize
(
p_intf
)
,
/* Hidden index. */
-
1
);
-
1
);
/* Add to VLC's playlist */
/* Add to VLC's playlist */
...
@@ -135,7 +133,8 @@ void PlaylistAddItem(GtkWidget *widget, gchar *name, char **ppsz_options, int i_
...
@@ -135,7 +133,8 @@ void PlaylistAddItem(GtkWidget *widget, gchar *name, char **ppsz_options, int i_
(
const
char
*
)
name
,
(
const
char
*
)
name
,
PLAYLIST_APPEND
,
PLAYLIST_END
,
PLAYLIST_APPEND
,
PLAYLIST_END
,
(
mtime_t
)
0
,
(
mtime_t
)
0
,
(
const
char
**
)
ppsz_options
,
i_pos
);
(
const
char
**
)
ppsz_options
,
i_pos
,
VLC_TRUE
,
VLC_FALSE
);
}
}
/* Cleanup memory */
/* Cleanup memory */
...
@@ -147,7 +146,8 @@ void PlaylistAddItem(GtkWidget *widget, gchar *name, char **ppsz_options, int i_
...
@@ -147,7 +146,8 @@ void PlaylistAddItem(GtkWidget *widget, gchar *name, char **ppsz_options, int i_
vlc_object_release
(
p_playlist
);
vlc_object_release
(
p_playlist
);
}
}
void
PlaylistRebuildListStore
(
GtkListStore
*
p_list
,
playlist_t
*
p_playlist
)
void
PlaylistRebuildListStore
(
intf_thread_t
*
p_intf
,
GtkListStore
*
p_list
,
playlist_t
*
p_playlist
)
{
{
GtkTreeIter
iter
;
GtkTreeIter
iter
;
int
i_dummy
;
int
i_dummy
;
...
@@ -159,9 +159,12 @@ void PlaylistRebuildListStore( GtkListStore * p_list, playlist_t * p_playlist )
...
@@ -159,9 +159,12 @@ void PlaylistRebuildListStore( GtkListStore * p_list, playlist_t * p_playlist )
red.green = 0;
red.green = 0;
#endif
#endif
vlc_mutex_lock
(
&
p_playlist
->
object_lock
);
vlc_mutex_lock
(
&
p_playlist
->
object_lock
);
for
(
i_dummy
=
0
;
i_dummy
<
p
_playlist
->
i_size
;
i_dummy
++
)
for
(
i_dummy
=
0
;
i_dummy
<
p
laylist_CurrentSize
(
p_intf
)
;
i_dummy
++
)
{
{
ppsz_text
[
0
]
=
p_playlist
->
pp_items
[
i_dummy
]
->
input
.
psz_name
;
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
i_dummy
,
VLC_TRUE
);
if
(
p_item
)
{
ppsz_text
[
0
]
=
p_item
->
p_input
->
psz_name
;
ppsz_text
[
1
]
=
"no info"
;
ppsz_text
[
1
]
=
"no info"
;
gtk_list_store_append
(
p_list
,
&
iter
);
gtk_list_store_append
(
p_list
,
&
iter
);
gtk_list_store_set
(
p_list
,
&
iter
,
gtk_list_store_set
(
p_list
,
&
iter
,
...
@@ -170,6 +173,7 @@ void PlaylistRebuildListStore( GtkListStore * p_list, playlist_t * p_playlist )
...
@@ -170,6 +173,7 @@ void PlaylistRebuildListStore( GtkListStore * p_list, playlist_t * p_playlist )
2
,
i_dummy
,
/* Hidden index */
2
,
i_dummy
,
/* Hidden index */
-
1
);
-
1
);
}
}
}
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
}
}
...
@@ -376,7 +380,7 @@ void onPlay(GtkButton *button, gpointer user_data)
...
@@ -376,7 +380,7 @@ void onPlay(GtkButton *button, gpointer user_data)
if
(
p_playlist
)
if
(
p_playlist
)
{
{
vlc_mutex_lock
(
&
p_playlist
->
object_lock
);
vlc_mutex_lock
(
&
p_playlist
->
object_lock
);
if
(
p
_playlist
->
i_size
)
if
(
p
laylist_CurrentSize
(
p_intf
)
)
{
{
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
playlist_Play
(
p_playlist
);
playlist_Play
(
p_playlist
);
...
@@ -457,7 +461,7 @@ void SliderMove(GtkRange *range, GtkScrollType scroll, gpointer user_data)
...
@@ -457,7 +461,7 @@ void SliderMove(GtkRange *range, GtkScrollType scroll, gpointer user_data)
}
}
void
addSelectedToPlaylist
(
GtkTreeModel
*
model
,
GtkTreePath
*
path
,
static
void
addSelectedToPlaylist
(
GtkTreeModel
*
model
,
GtkTreePath
*
path
,
GtkTreeIter
*
iter
,
gpointer
*
userdata
)
GtkTreeIter
*
iter
,
gpointer
*
userdata
)
{
{
gchar
*
psz_filename
;
gchar
*
psz_filename
;
...
@@ -478,7 +482,7 @@ void onFileListRow(GtkTreeView *treeview, GtkTreePath *path,
...
@@ -478,7 +482,7 @@ void onFileListRow(GtkTreeView *treeview, GtkTreePath *path,
struct
stat
st
;
struct
stat
st
;
GtkTreeModel
*
p_model
;
GtkTreeModel
*
p_model
;
GtkTreeIter
iter
;
GtkTreeIter
iter
;
gchar
*
psz_filename
;
char
*
psz_filename
;
/* This might be a directory selection */
/* This might be a directory selection */
p_model
=
gtk_tree_view_get_model
(
treeview
);
p_model
=
gtk_tree_view_get_model
(
treeview
);
...
@@ -595,7 +599,7 @@ void onAddNetworkPlaylist(GtkButton *button, gpointer user_data)
...
@@ -595,7 +599,7 @@ void onAddNetworkPlaylist(GtkButton *button, gpointer user_data)
if
(
b_network_transcode
)
if
(
b_network_transcode
)
{
{
msg_Dbg
(
p_intf
,
"Network transcode option selected."
);
msg_Dbg
(
p_intf
,
"Network transcode option selected."
);
onAddTranscodeToPlaylist
(
GTK_WIDGET
(
button
)
,
(
gchar
*
)
psz_mrl_name
);
onAddTranscodeToPlaylist
(
button
,
(
gchar
*
)
psz_mrl_name
);
}
}
else
else
{
{
...
@@ -733,7 +737,7 @@ void onAddCameraToPlaylist(GtkButton *button, gpointer user_data)
...
@@ -733,7 +737,7 @@ void onAddCameraToPlaylist(GtkButton *button, gpointer user_data)
if
(
b_v4l_transcode
)
if
(
b_v4l_transcode
)
{
{
msg_Dbg
(
p_intf
,
"Camera transcode option selected."
);
msg_Dbg
(
p_intf
,
"Camera transcode option selected."
);
onAddTranscodeToPlaylist
(
GTK_WIDGET
(
button
)
,
(
gchar
*
)
v4l_mrl
);
onAddTranscodeToPlaylist
(
button
,
(
gchar
*
)
v4l_mrl
);
}
}
else
else
{
{
...
@@ -778,6 +782,7 @@ void onPlaylistRow(GtkTreeView *treeview, GtkTreePath *path,
...
@@ -778,6 +782,7 @@ void onPlaylistRow(GtkTreeView *treeview, GtkTreePath *path,
GtkTreeModel
*
p_model
;
GtkTreeModel
*
p_model
;
GtkTreeIter
iter
;
GtkTreeIter
iter
;
int
i_row
;
int
i_row
;
int
i_skip
;
/* This might be a directory selection */
/* This might be a directory selection */
p_model
=
gtk_tree_view_get_model
(
treeview
);
p_model
=
gtk_tree_view_get_model
(
treeview
);
...
@@ -793,7 +798,8 @@ void onPlaylistRow(GtkTreeView *treeview, GtkTreePath *path,
...
@@ -793,7 +798,8 @@ void onPlaylistRow(GtkTreeView *treeview, GtkTreePath *path,
}
}
gtk_tree_model_get
(
p_model
,
&
iter
,
2
,
&
i_row
,
-
1
);
gtk_tree_model_get
(
p_model
,
&
iter
,
2
,
&
i_row
,
-
1
);
playlist_Goto
(
p_playlist
,
i_row
);
i_skip
=
i_row
-
p_playlist
->
i_current_index
;
playlist_Skip
(
p_playlist
,
i_skip
);
}
}
vlc_object_release
(
p_playlist
);
vlc_object_release
(
p_playlist
);
}
}
...
@@ -823,7 +829,7 @@ void onUpdatePlaylist(GtkButton *button, gpointer user_data)
...
@@ -823,7 +829,7 @@ void onUpdatePlaylist(GtkButton *button, gpointer user_data)
G_TYPE_UINT
);
/* Hidden field */
G_TYPE_UINT
);
/* Hidden field */
if
(
p_model
)
if
(
p_model
)
{
{
PlaylistRebuildListStore
(
p_model
,
p_playlist
);
PlaylistRebuildListStore
(
p_
intf
,
p_
model
,
p_playlist
);
gtk_tree_view_set_model
(
GTK_TREE_VIEW
(
p_tvplaylist
),
GTK_TREE_MODEL
(
p_model
));
gtk_tree_view_set_model
(
GTK_TREE_VIEW
(
p_tvplaylist
),
GTK_TREE_MODEL
(
p_model
));
g_object_unref
(
p_model
);
g_object_unref
(
p_model
);
}
}
...
@@ -831,7 +837,7 @@ void onUpdatePlaylist(GtkButton *button, gpointer user_data)
...
@@ -831,7 +837,7 @@ void onUpdatePlaylist(GtkButton *button, gpointer user_data)
vlc_object_release
(
p_playlist
);
vlc_object_release
(
p_playlist
);
}
}
void
deleteItemFromPlaylist
(
gpointer
data
,
gpointer
user_data
)
static
void
deleteItemFromPlaylist
(
gpointer
data
,
gpointer
user_data
)
{
{
gtk_tree_path_free
((
GtkTreePath
*
)
data
);
// removing an item.
gtk_tree_path_free
((
GtkTreePath
*
)
data
);
// removing an item.
}
}
...
@@ -897,7 +903,7 @@ void onDeletePlaylist(GtkButton *button, gpointer user_data)
...
@@ -897,7 +903,7 @@ void onDeletePlaylist(GtkButton *button, gpointer user_data)
G_TYPE_UINT
);
/* Hidden field */
G_TYPE_UINT
);
/* Hidden field */
if
(
p_store
)
if
(
p_store
)
{
{
PlaylistRebuildListStore
(
p_store
,
p_playlist
);
PlaylistRebuildListStore
(
p_
intf
,
p_
store
,
p_playlist
);
gtk_tree_view_set_model
(
GTK_TREE_VIEW
(
p_tvplaylist
),
GTK_TREE_MODEL
(
p_store
));
gtk_tree_view_set_model
(
GTK_TREE_VIEW
(
p_tvplaylist
),
GTK_TREE_MODEL
(
p_store
));
g_object_unref
(
p_store
);
g_object_unref
(
p_store
);
}
}
...
@@ -919,9 +925,9 @@ void onClearPlaylist(GtkButton *button, gpointer user_data)
...
@@ -919,9 +925,9 @@ void onClearPlaylist(GtkButton *button, gpointer user_data)
return
;
return
;
}
}
for
(
item
=
p
_playlist
->
i_size
-
1
;
item
>=
0
;
item
--
)
for
(
item
=
p
laylist_CurrentSize
(
p_intf
)
-
1
;
item
>=
0
;
item
--
)
{
{
msg_Err
(
p_playlist
"fix pda delete"
);
msg_Err
(
p_playlist
,
"fix pda delete"
);
}
}
vlc_object_release
(
p_playlist
);
vlc_object_release
(
p_playlist
);
...
...
modules/gui/pda/pda_callbacks.h
View file @
bb62471f
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
#include <vlc_interface.h>
#include <vlc_interface.h>
void
ReadDirectory
(
intf_thread_t
*
p_intf
,
GtkListStore
*
p_list
,
char
*
psz_dir
);
void
ReadDirectory
(
intf_thread_t
*
p_intf
,
GtkListStore
*
p_list
,
char
*
psz_dir
);
void
PlaylistRebuildListStore
(
GtkListStore
*
p_list
,
playlist_t
*
p_playlist
);
void
PlaylistRebuildListStore
(
intf_thread_t
*
p_intf
,
GtkListStore
*
p_list
,
playlist_t
*
p_playlist
);
gboolean
gboolean
...
...
modules/gui/pda/pda_support.h
View file @
bb62471f
...
@@ -2,10 +2,6 @@
...
@@ -2,10 +2,6 @@
* DO NOT EDIT THIS FILE - it is generated by Glade.
* DO NOT EDIT THIS FILE - it is generated by Glade.
*/
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <gtk/gtk.h>
#include <gtk/gtk.h>
/*
/*
...
...
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