pda_callbacks.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:39k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * pda_callbacks.c : Callbacks for the pda Linux Gtk+ plugin.
  3.  *****************************************************************************
  4.  * Copyright (C) 2000, 2001 the VideoLAN team
  5.  * $Id: e1abc08bb1c0422bdcbabd31024c5db980da7fc1 $
  6.  *
  7.  * Authors: Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <sys/types.h>                                              /* off_t */
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_input.h>
  32. #include <vlc_interface.h>
  33. #include <vlc_playlist.h>
  34. #include <vlc_vout.h>
  35. #include <dirent.h>
  36. #include <sys/stat.h>
  37. #include <unistd.h>
  38. #include <pwd.h>
  39. #include <grp.h>
  40. #include <gtk/gtk.h>
  41. #include "pda_callbacks.h"
  42. #include "pda_interface.h"
  43. #include "pda_support.h"
  44. #include "pda.h"
  45. #define VLC_MAX_MRL     256
  46. static char *get_file_perms(struct stat st);
  47. /*****************************************************************************
  48.  * Useful function to retrieve p_intf
  49.  ****************************************************************************/
  50. void * __GtkGetIntf( GtkWidget * widget )
  51. {
  52.     void *p_data;
  53.     if( GTK_IS_MENU_ITEM( widget ) )
  54.     {
  55.         /* Look for a GTK_MENU */
  56.         while( widget->parent && !GTK_IS_MENU( widget ) )
  57.         {
  58.             widget = widget->parent;
  59.         }
  60.         /* Maybe this one has the data */
  61.         p_data = gtk_object_get_data( GTK_OBJECT( widget ), "p_intf" );
  62.         if( p_data )
  63.         {
  64.             return p_data;
  65.         }
  66.         /* Otherwise, the parent widget has it */
  67.         widget = gtk_menu_get_attach_widget( GTK_MENU( widget ) );
  68.     }
  69.     /* We look for the top widget */
  70.     widget = gtk_widget_get_toplevel( GTK_WIDGET( widget ) );
  71.     p_data = gtk_object_get_data( GTK_OBJECT( widget ), "p_intf" );
  72.     return p_data;
  73. }
  74. static void PlaylistAddItem(GtkWidget *widget, gchar *name, char **ppsz_options, int i_size)
  75. {
  76.     intf_thread_t *p_intf = GtkGetIntf( widget );
  77.     playlist_t    *p_playlist;
  78.     int           i_id , i_pos=0;
  79.     GtkTreeView   *p_tvplaylist = NULL;
  80.     p_playlist = pl_Hold( p_intf );
  81.     if( p_playlist ==  NULL)
  82.     {   /* Bail out when VLC's playlist object is not found. */
  83.         return;
  84.     }
  85.     /* Add to playlist object. */
  86.     p_tvplaylist = (GtkTreeView *) lookup_widget( GTK_WIDGET(widget), "tvPlaylist");
  87.     if (p_tvplaylist)
  88.     {
  89.         GtkTreeModel *p_play_model;
  90.         GtkTreeIter   p_play_iter;
  91.         p_play_model = gtk_tree_view_get_model(p_tvplaylist);
  92.  
  93.         if (p_play_model)
  94.         {
  95.             int i;
  96.             /* Add a new row to the playlist treeview model */
  97.             gtk_list_store_append (GTK_LIST_STORE(p_play_model), &p_play_iter);
  98.             gtk_list_store_set (GTK_LIST_STORE(p_play_model), &p_play_iter,
  99.                                     0, name,   /* Add path to it !!! */
  100.                                     1, "no info",
  101.                                     2, playlist_CurrentSize(p_playlist), /* Hidden index. */
  102.                                     -1 );
  103.             /* Add to VLC's playlist */
  104. #if 0
  105.             if (p_intf->p_sys->b_autoplayfile)
  106.             {
  107.                 playlist_Add( p_playlist, (const char*)name, (const char**)ppsz_options, i_size,
  108.                               PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END);
  109.             }
  110.             else
  111. #endif
  112.             {
  113.                 i_id = playlist_AddExt( p_playlist, (const char*)name,
  114.                               (const char*)name,
  115.                               PLAYLIST_APPEND, PLAYLIST_END,
  116.                               (mtime_t) 0,
  117.                               i_size, (const char **) ppsz_options, VLC_INPUT_OPTION_TRUSTED,
  118.                               true, pl_Unlocked );
  119.             }
  120.             /* Cleanup memory */
  121.             for (i=0; i<i_size; i++)
  122.                 free(ppsz_options[i]);
  123.             free(ppsz_options);
  124.         }
  125.     }
  126.     pl_Release( p_intf );
  127. }
  128. void PlaylistRebuildListStore( intf_thread_t *p_intf,
  129.     GtkListStore * p_list, playlist_t * p_playlist )
  130. {
  131.     GtkTreeIter iter;
  132.     int         i_dummy;
  133.     gchar *     ppsz_text[2];
  134. #if 0
  135.     GdkColor    red;
  136.     red.red     = 65535;
  137.     red.blue    = 0;
  138.     red.green   = 0;
  139. #endif
  140.     PL_LOCK;
  141.     for( i_dummy = 0; i_dummy < playlist_CurrentSize(p_playlist) ; i_dummy++ )
  142.     {
  143.         playlist_item_t *p_item = playlist_ItemGetById( p_playlist, i_dummy );
  144.         if( p_item )
  145.         {
  146.             ppsz_text[0] = p_item->p_input->psz_name;
  147.             ppsz_text[1] = "no info";
  148.             gtk_list_store_append (p_list, &iter);
  149.             gtk_list_store_set (p_list, &iter,
  150.                                 0, ppsz_text[0],
  151.                                 1, ppsz_text[1],
  152.                                 2, i_dummy, /* Hidden index */
  153.                                 -1);
  154.         }
  155.     }
  156.     PL_UNLOCK;
  157. }
  158. /*****************************************************************
  159.  * Read directory helper function.
  160.  ****************************************************************/
  161. void ReadDirectory(intf_thread_t *p_intf, GtkListStore *p_list, char *psz_dir )
  162. {
  163.     GtkTreeIter    iter;
  164.     struct dirent **pp_namelist;
  165.     struct passwd *p_pw;
  166.     struct group  *p_grp;
  167.     struct stat    st;
  168.     int n=-1, status=-1;
  169.     msg_Dbg(p_intf, "Changing to dir %s", psz_dir);
  170.     if (psz_dir)
  171.     {
  172.        status = chdir(psz_dir);
  173.        if (status<0)
  174.           msg_Dbg(p_intf, "permision denied" );
  175.     }
  176.     n = scandir(".", &pp_namelist, 0, alphasort);
  177.     if (n<0)
  178.         perror("scandir");
  179.     else
  180.     {
  181.         int i;
  182.         gchar *ppsz_text[4];
  183.         if (lstat("..", &st)==0)
  184.         {
  185.             /* user, group  */
  186.             p_pw  = getpwuid(st.st_uid);
  187.             p_grp = getgrgid(st.st_gid);
  188.             /* XXX : kludge temporaire pour yopy */
  189.             ppsz_text[0] = "..";
  190.             ppsz_text[1] = get_file_perms(st);
  191.             ppsz_text[2] = p_pw->pw_name;
  192.             ppsz_text[3] = p_grp->gr_name;
  193.             /* Add a new row to the model */
  194.             gtk_list_store_append (p_list, &iter);
  195.             gtk_list_store_set (p_list, &iter,
  196.                                 0, ppsz_text[0],
  197.                                 1, ppsz_text[1],
  198.                                 2, st.st_size,
  199.                                 3, ppsz_text[2],
  200.                                 4, ppsz_text[3],
  201.                                 -1);
  202.             free(ppsz_text[1]);
  203.         }
  204.             /* kludge */
  205.         for (i=0; i<n; i++)
  206.         {
  207.             if ((pp_namelist[i]->d_name[0] != '.') &&
  208.                 (lstat(pp_namelist[i]->d_name, &st)==0))
  209.             {
  210.                 /* user, group  */
  211.                 p_pw  = getpwuid(st.st_uid);
  212.                 p_grp = getgrgid(st.st_gid);
  213.                 /* This is a list of strings. */
  214.                 ppsz_text[0] = pp_namelist[i]->d_name;
  215.                 ppsz_text[1] = get_file_perms(st);
  216.                 ppsz_text[2] = p_pw->pw_name;
  217.                 ppsz_text[3] = p_grp->gr_name;
  218. #if 0
  219.                 msg_Dbg(p_intf, "(%d) file: %s permission: %s user: %s group: %s", i, ppsz_text[0], ppsz_text[1], ppsz_text[2], ppsz_text[3] );
  220. #endif
  221.                 gtk_list_store_append (p_list, &iter);
  222.                 gtk_list_store_set (p_list, &iter,
  223.                                     0, ppsz_text[0],
  224.                                     1, ppsz_text[1],
  225.                                     2, st.st_size,
  226.                                     3, ppsz_text[2],
  227.                                     4, ppsz_text[3],
  228.                                     -1);
  229.                 free(ppsz_text[1]);
  230.             }
  231.         }
  232.         free(pp_namelist);
  233.     }
  234. }
  235. static char *get_file_perms(const struct stat st)
  236. {
  237.     char  *psz_perm;
  238.     psz_perm = (char *) malloc(10);
  239.     strncpy( psz_perm, "----------", sizeof("----------"));
  240.     /* determine permission modes */
  241.     if (S_ISLNK(st.st_mode))
  242.         psz_perm[0]= 'l';
  243.     else if (S_ISDIR(st.st_mode))
  244.         psz_perm[0]= 'd';
  245.     else if (S_ISCHR(st.st_mode))
  246.         psz_perm[0]= 'c';
  247.     else if (S_ISBLK(st.st_mode))
  248.         psz_perm[0]= 'b';
  249.     else if (S_ISFIFO(st.st_mode))
  250.         psz_perm[0]= 'f';
  251.     else if (S_ISSOCK(st.st_mode))
  252.         psz_perm[0]= 's';
  253.     else if (S_ISREG(st.st_mode))
  254.         psz_perm[0]= '-';
  255.     else /* Unknown type is an error */
  256.         psz_perm[0]= '?';
  257.     /* Get file permissions */
  258.     /* User */
  259.     if (st.st_mode & S_IRUSR)
  260.         psz_perm[1]= 'r';
  261.     if (st.st_mode & S_IWUSR)
  262.         psz_perm[2]= 'w';
  263.     if (st.st_mode & S_IXUSR)
  264.     {
  265.         if (st.st_mode & S_ISUID)
  266.             psz_perm[3] = 's';
  267.         else
  268.             psz_perm[3]= 'x';
  269.     }
  270.     else if (st.st_mode & S_ISUID)
  271.         psz_perm[3] = 'S';
  272.     /* Group */
  273.     if (st.st_mode & S_IRGRP)
  274.         psz_perm[4]= 'r';
  275.     if (st.st_mode & S_IWGRP)
  276.         psz_perm[5]= 'w';
  277.     if (st.st_mode & S_IXGRP)
  278.     {
  279.         if (st.st_mode & S_ISGID)
  280.             psz_perm[6] = 's';
  281.         else
  282.             psz_perm[6]= 'x';
  283.     }
  284.     else if (st.st_mode & S_ISGID)
  285.         psz_perm[6] = 'S';
  286.     /* Other */
  287.     if (st.st_mode & S_IROTH)
  288.         psz_perm[7]= 'r';
  289.     if (st.st_mode & S_IWOTH)
  290.         psz_perm[8]= 'w';
  291.     if (st.st_mode & S_IXOTH)
  292.     {
  293.         /* 'sticky' bit */
  294.         if (st.st_mode &S_ISVTX)
  295.             psz_perm[9] = 't';
  296.         else
  297.             psz_perm[9]= 'x';
  298.     }
  299.     else if (st.st_mode &S_ISVTX)
  300.         psz_perm[9]= 'T';
  301.     return psz_perm;
  302. }
  303. /*
  304.  * Main interface callbacks
  305.  */
  306. gboolean onPDADeleteEvent(GtkWidget *widget, GdkEvent *event, gpointer user_data)
  307. {
  308.     intf_thread_t *p_intf = GtkGetIntf( widget );
  309.     libvlc_Quit( p_intf->p_libvlc );
  310.     msg_Dbg( p_intf, "about to exit vlc ... signaled" );
  311.     return TRUE;
  312. }
  313. void onRewind(GtkButton *button, gpointer user_data)
  314. {
  315.     intf_thread_t *p_intf = GtkGetIntf( button );
  316.     if (p_intf->p_sys->p_input != NULL)
  317.     {
  318.         var_SetVoid( p_intf->p_sys->p_input, "rate-slower" );
  319.     }
  320. }
  321. void onPause(GtkButton *button, gpointer user_data)
  322. {
  323.     intf_thread_t *p_intf = GtkGetIntf( button );
  324.     if (p_intf->p_sys->p_input != NULL)
  325.     {
  326.         var_SetInteger( p_intf->p_sys->p_input, "state", PAUSE_S );
  327.     }
  328. }
  329. void onPlay(GtkButton *button, gpointer user_data)
  330. {
  331.     intf_thread_t *p_intf = GtkGetIntf( GTK_WIDGET( button ) );
  332.     playlist_t *p_playlist = pl_Hold( p_intf );
  333.     if (p_playlist)
  334.     {
  335.         int s;
  336.         PL_LOCK;
  337.         s = playlist_CurrentSize(p_playlist);
  338.         PL_UNLOCK;
  339.         /* FIXME: This is racy... */
  340.         if (s)
  341.         {
  342.             playlist_Play( p_playlist );
  343.             gdk_window_lower( p_intf->p_sys->p_window->window );
  344.         }
  345.         pl_Release( p_intf );
  346.     }
  347. }
  348. void onStop(GtkButton *button, gpointer user_data)
  349. {
  350.     intf_thread_t *p_intf = GtkGetIntf( GTK_WIDGET( button ) );
  351.     playlist_t *p_playlist = pl_Hold( p_intf );
  352.     if (p_playlist)
  353.     {
  354.         playlist_Stop( p_playlist );
  355.         pl_Release( p_intf );
  356.         gdk_window_raise( p_intf->p_sys->p_window->window );
  357.     }
  358. }
  359. void onForward(GtkButton *button, gpointer user_data)
  360. {
  361.     intf_thread_t *p_intf = GtkGetIntf( button );
  362.     if (p_intf->p_sys->p_input != NULL)
  363.     {
  364.         var_SetVoid( p_intf->p_sys->p_input, "rate-faster" );
  365.     }
  366. }
  367. void onAbout(GtkButton *button, gpointer user_data)
  368. {
  369.     intf_thread_t *p_intf = GtkGetIntf( GTK_WIDGET(button) );
  370.     /* Toggle notebook */
  371.     if (p_intf->p_sys->p_notebook)
  372.     {
  373.         gtk_widget_show( GTK_WIDGET(p_intf->p_sys->p_notebook) );
  374.         gtk_notebook_set_page(p_intf->p_sys->p_notebook,6);
  375.     }
  376. }
  377. gboolean SliderRelease(GtkWidget *widget, GdkEventButton *event, gpointer user_data)
  378. {
  379.     intf_thread_t *p_intf = GtkGetIntf( widget );
  380.     msg_Dbg( p_intf, "SliderButton Release" );
  381.     p_intf->p_sys->b_slider_free = 1;
  382.     return TRUE;
  383. }
  384. gboolean SliderPress(GtkWidget *widget, GdkEventButton *event, gpointer user_data)
  385. {
  386.     intf_thread_t *p_intf = GtkGetIntf( widget );
  387.     msg_Dbg( p_intf, "SliderButton Press" );
  388.     p_intf->p_sys->b_slider_free = 0;
  389.     return FALSE;
  390. }
  391. void SliderMove(GtkRange *range, GtkScrollType scroll, gpointer user_data)
  392. {
  393.     intf_thread_t *p_intf = GtkGetIntf( range );
  394.     msg_Dbg( p_intf, "SliderButton Move" );
  395. }
  396. static void addSelectedToPlaylist(GtkTreeModel *model, GtkTreePath *path,
  397.                            GtkTreeIter *iter, gpointer *userdata)
  398. {
  399.     gchar *psz_filename;
  400.     gtk_tree_model_get(model, iter, 0, &psz_filename, -1);
  401.     PlaylistAddItem(GTK_WIDGET(userdata), psz_filename, 0, 0);
  402. }
  403. void onFileListRow(GtkTreeView *treeview, GtkTreePath *path,
  404.                    GtkTreeViewColumn *column, gpointer user_data)
  405. {
  406.     intf_thread_t *p_intf = GtkGetIntf( GTK_WIDGET(treeview) );
  407.     GtkTreeSelection *p_selection = gtk_tree_view_get_selection(treeview);
  408.     if (gtk_tree_selection_count_selected_rows(p_selection) == 1)
  409.     {
  410.         struct stat   st;
  411.         GtkTreeModel *p_model;
  412.         GtkTreeIter   iter;
  413.         char         *psz_filename;
  414.         /* This might be a directory selection */
  415.         p_model = gtk_tree_view_get_model(treeview);
  416.         if (!p_model)
  417.         {
  418.             msg_Err(p_intf, "PDA: Filelist model contains a NULL pointer" );
  419.             return;
  420.         }
  421.         if (!gtk_tree_model_get_iter(p_model, &iter, path))
  422.         {
  423.             msg_Err( p_intf, "PDA: Could not get iter from model" );
  424.             return;
  425.         }
  426.         gtk_tree_model_get(p_model, &iter, 0, &psz_filename, -1);
  427.         if (stat((char*)psz_filename, &st)==0)
  428.         {
  429.             if (S_ISDIR(st.st_mode))
  430.             {
  431.                 GtkListStore *p_store = NULL;
  432.                 /* Get new directory listing */
  433.                 p_store = gtk_list_store_new (5,
  434.                                            G_TYPE_STRING,
  435.                                            G_TYPE_STRING,
  436.                                            G_TYPE_UINT64,
  437.                                            G_TYPE_STRING,
  438.                                            G_TYPE_STRING);
  439.                 if (p_store)
  440.                 {
  441.                     ReadDirectory(p_intf, p_store, psz_filename);
  442.                     /* Update TreeView with new model */
  443.                     gtk_tree_view_set_model(treeview, (GtkTreeModel*) p_store);
  444.                     g_object_unref(p_store);
  445.                 }
  446.             }
  447.         }
  448.     }
  449. }
  450. void onAddFileToPlaylist(GtkButton *button, gpointer user_data)
  451. {
  452.     GtkTreeView       *p_treeview = NULL;
  453.     p_treeview = (GtkTreeView *) lookup_widget( GTK_WIDGET(button), "tvFileList");
  454.     if (p_treeview)
  455.     {
  456.         GtkTreeSelection *p_selection = gtk_tree_view_get_selection(p_treeview);
  457.         gtk_tree_selection_selected_foreach(p_selection, (GtkTreeSelectionForeachFunc) &addSelectedToPlaylist, (gpointer) p_treeview);
  458.     }
  459. }
  460. void NetworkBuildMRL(GtkEditable *editable, gpointer user_data)
  461. {
  462.     intf_thread_t *p_intf = GtkGetIntf( GTK_WIDGET(editable) );
  463.     GtkSpinButton *p_networkPort = NULL;
  464.     GtkEntry      *p_entryMRL = NULL;
  465.     GtkEntry      *p_networkType = NULL;
  466.     GtkEntry      *p_networkAddress = NULL;
  467.     GtkEntry      *p_networkProtocol = NULL;
  468.     const gchar   *psz_mrlNetworkType;
  469.     const gchar   *psz_mrlAddress;
  470.     const gchar   *psz_mrlProtocol;
  471.     gint           i_mrlPort;
  472.     char           text[VLC_MAX_MRL];
  473.     int            i_pos = 0;
  474.     p_entryMRL = (GtkEntry*) lookup_widget( GTK_WIDGET(editable), "entryMRL" );
  475.     p_networkType     = (GtkEntry*) lookup_widget( GTK_WIDGET(editable), "entryNetworkType" );
  476.     p_networkAddress  = (GtkEntry*) lookup_widget( GTK_WIDGET(editable), "entryNetworkAddress" );
  477.     p_networkPort     = (GtkSpinButton*) lookup_widget( GTK_WIDGET(editable), "entryNetworkPort" );
  478.     p_networkProtocol = (GtkEntry*) lookup_widget( GTK_WIDGET(editable), "entryNetworkProtocolType" );
  479.     psz_mrlNetworkType = gtk_entry_get_text(GTK_ENTRY(p_networkType));
  480.     psz_mrlAddress     = gtk_entry_get_text(GTK_ENTRY(p_networkAddress));
  481.     i_mrlPort          = gtk_spin_button_get_value_as_int(p_networkPort);
  482.     psz_mrlProtocol    = gtk_entry_get_text(GTK_ENTRY(p_networkProtocol));
  483.     /* Build MRL from parts ;-) */
  484.     i_pos = snprintf( &text[0], VLC_MAX_MRL, "%s://", (char*)psz_mrlProtocol);
  485.     if (strncasecmp( (char*)psz_mrlNetworkType, "multicast",9)==0)
  486.     {
  487.         i_pos += snprintf( &text[i_pos], VLC_MAX_MRL - i_pos, "@" );
  488.     }
  489.     i_pos += snprintf( &text[i_pos], VLC_MAX_MRL - i_pos, "%s:%d", (char*)psz_mrlAddress, (int)i_mrlPort );
  490.     if (i_pos >= VLC_MAX_MRL)
  491.     {
  492.         text[VLC_MAX_MRL-1]='';
  493.         msg_Err( p_intf, "Media Resource Locator is truncated to: %s", text);
  494.     }
  495.     gtk_entry_set_text(p_entryMRL,text);
  496. }
  497. void onAddNetworkPlaylist(GtkButton *button, gpointer user_data)
  498. {
  499.     intf_thread_t  *p_intf = GtkGetIntf( button );
  500.     GtkEntry       *p_mrl = NULL;
  501.     GtkCheckButton *p_network_transcode = NULL;
  502.     gboolean        b_network_transcode;
  503.     const gchar    *psz_mrl_name;
  504.     p_mrl = (GtkEntry*) lookup_widget(GTK_WIDGET(button),"entryMRL" );
  505.     psz_mrl_name = gtk_entry_get_text(p_mrl);
  506.     p_network_transcode = (GtkCheckButton*) lookup_widget(GTK_WIDGET(button), "checkNetworkTranscode" );
  507.     b_network_transcode = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(p_network_transcode));
  508.     if (b_network_transcode)
  509.     {
  510.         msg_Dbg( p_intf, "Network transcode option selected." );
  511.         onAddTranscodeToPlaylist(button, (gchar *)psz_mrl_name);
  512.     }
  513.     else
  514.     {
  515.         msg_Dbg( p_intf, "Network receiving selected." );
  516.         PlaylistAddItem(GTK_WIDGET(button), (gchar *)psz_mrl_name, 0, 0);
  517.     }
  518. }
  519. void onAddCameraToPlaylist(GtkButton *button, gpointer user_data)
  520. {
  521.     intf_thread_t *p_intf = GtkGetIntf( button );
  522.     GtkSpinButton *entryV4LChannel = NULL;
  523.     GtkSpinButton *entryV4LFrequency = NULL;
  524.     GtkSpinButton *entryV4LSampleRate = NULL;
  525.     GtkSpinButton *entryV4LQuality = NULL;
  526.     GtkSpinButton *entryV4LTuner = NULL;
  527.     gint    i_v4l_channel;
  528.     gint    i_v4l_frequency;
  529.     gint    i_v4l_samplerate;
  530.     gint    i_v4l_quality;
  531.     gint    i_v4l_tuner;
  532.     GtkEntry      *entryV4LVideoDevice = NULL;
  533.     GtkEntry      *entryV4LAudioDevice = NULL;
  534.     GtkEntry      *entryV4LNorm = NULL;
  535.     GtkEntry      *entryV4LSize = NULL;
  536.     GtkEntry      *entryV4LSoundDirection = NULL;
  537.     const gchar   *p_v4l_video_device;
  538.     const gchar   *p_v4l_audio_device;
  539.     const gchar   *p_v4l_norm;
  540.     const gchar   *p_v4l_size;
  541.     const gchar   *p_v4l_sound_direction;
  542.     /* MJPEG only */
  543.     GtkCheckButton *checkV4LMJPEG = NULL;
  544.     GtkSpinButton  *entryV4LDecimation = NULL;
  545.     gboolean        b_v4l_mjpeg;
  546.     gint            i_v4l_decimation;
  547.     /* end MJPEG only */
  548.     GtkCheckButton  *p_check_v4l_transcode = NULL;
  549.     gboolean         b_v4l_transcode;
  550.  
  551.     char **ppsz_options = NULL; /* list of options */
  552.     int  i_options=0;
  553.     char v4l_mrl[6];
  554.     int i_pos;
  555.     int i;
  556.     ppsz_options = (char **) malloc(11 *sizeof(char*));
  557.     if (ppsz_options == NULL)
  558.         return;
  559.     for (i=0; i<11; i++)
  560.     {
  561.         ppsz_options[i] = (char *) malloc(VLC_MAX_MRL);
  562.         if (ppsz_options[i] == NULL)
  563.         {
  564.             for (i-=1; i>=0; i--)
  565.                 free(ppsz_options[i]);
  566.             free(ppsz_options);
  567.             return;
  568.         }
  569.     }
  570.     i_pos = snprintf( &v4l_mrl[0], 6, "v4l");
  571.     v4l_mrl[5]='';
  572.     entryV4LChannel    = (GtkSpinButton*) lookup_widget( GTK_WIDGET(button), "entryV4LChannel" );
  573.     entryV4LFrequency  = (GtkSpinButton*) lookup_widget( GTK_WIDGET(button), "entryV4LFrequency" );
  574.     entryV4LSampleRate = (GtkSpinButton*) lookup_widget( GTK_WIDGET(button), "entryV4LSampleRate" );
  575.     entryV4LQuality    = (GtkSpinButton*) lookup_widget( GTK_WIDGET(button), "entryV4LQuality" );
  576.     entryV4LTuner      = (GtkSpinButton*) lookup_widget( GTK_WIDGET(button), "entryV4LTuner" );
  577.     entryV4LVideoDevice  = (GtkEntry*) lookup_widget( GTK_WIDGET(button), "entryV4LVideoDevice" );
  578.     entryV4LAudioDevice  = (GtkEntry*) lookup_widget( GTK_WIDGET(button), "entryV4LAudioDevice" );
  579.     entryV4LNorm  = (GtkEntry*) lookup_widget( GTK_WIDGET(button), "entryV4LNorm" );
  580.     entryV4LSize  = (GtkEntry*) lookup_widget( GTK_WIDGET(button), "entryV4LSize" );
  581.     entryV4LSoundDirection  = (GtkEntry*) lookup_widget( GTK_WIDGET(button), "entryV4LSoundDirection" );
  582.     i_v4l_channel = gtk_spin_button_get_value_as_int(entryV4LChannel);
  583.     i_v4l_frequency = gtk_spin_button_get_value_as_int(entryV4LFrequency);
  584.     i_v4l_samplerate = gtk_spin_button_get_value_as_int(entryV4LSampleRate);
  585.     i_v4l_quality = gtk_spin_button_get_value_as_int(entryV4LQuality);
  586.     i_v4l_tuner = gtk_spin_button_get_value_as_int(entryV4LTuner);
  587.     p_v4l_video_device = gtk_entry_get_text(GTK_ENTRY(entryV4LVideoDevice));
  588.     p_v4l_audio_device = gtk_entry_get_text(GTK_ENTRY(entryV4LAudioDevice));
  589.     p_v4l_norm = gtk_entry_get_text(GTK_ENTRY(entryV4LNorm));
  590.     p_v4l_size  = gtk_entry_get_text(GTK_ENTRY(entryV4LSize));
  591.     p_v4l_sound_direction = gtk_entry_get_text(GTK_ENTRY(entryV4LSoundDirection));
  592.     i_pos = snprintf( &ppsz_options[i_options++][0], VLC_MAX_MRL, "%s", (char*)p_v4l_video_device );
  593.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  594.     i_pos = snprintf( &ppsz_options[i_options++][0], VLC_MAX_MRL, "adev=%s", (char*)p_v4l_audio_device );
  595.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  596.     i_pos = snprintf( &ppsz_options[i_options++][0], VLC_MAX_MRL, "norm=%s", (char*)p_v4l_norm );
  597.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  598.     i_pos = snprintf( &ppsz_options[i_options++][0], VLC_MAX_MRL, "size=%s", (char*)p_v4l_size );
  599.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  600.     i_pos = snprintf( &ppsz_options[i_options++][0], VLC_MAX_MRL, "%s", (char*)p_v4l_sound_direction );
  601.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  602.     i_pos = snprintf( &ppsz_options[i_options++][0], VLC_MAX_MRL, "channel=%d", (int)i_v4l_channel );
  603.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  604.     i_pos = snprintf( &ppsz_options[i_options++][0], VLC_MAX_MRL, "frequency=%d", (int)i_v4l_frequency );
  605.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  606.     i_pos = snprintf( &ppsz_options[i_options++][0], VLC_MAX_MRL, "samplerate=%d", (int)i_v4l_samplerate );
  607.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  608.     i_pos = snprintf( &ppsz_options[i_options++][0], VLC_MAX_MRL, "quality=%d", (int)i_v4l_quality );
  609.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  610.     i_pos = snprintf( &ppsz_options[i_options++][0], VLC_MAX_MRL, "tuner=%d", (int)i_v4l_tuner );
  611.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  612.     /* MJPEG only */
  613.     checkV4LMJPEG      = (GtkCheckButton*) lookup_widget( GTK_WIDGET(button), "checkV4LMJPEG" );
  614.     b_v4l_mjpeg = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(checkV4LMJPEG));
  615.     if (b_v4l_mjpeg)
  616.     {
  617.         entryV4LDecimation = (GtkSpinButton*) lookup_widget( GTK_WIDGET(button), "entryV4LDecimation" );
  618.         i_v4l_decimation = gtk_spin_button_get_value_as_int(entryV4LDecimation);
  619.         i_pos = snprintf( &ppsz_options[i_options++][0], VLC_MAX_MRL, "mjpeg:%d", (int)i_v4l_decimation );
  620.         if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  621.     }
  622.     /* end MJPEG only */
  623.     p_check_v4l_transcode = (GtkCheckButton*) lookup_widget(GTK_WIDGET(button), "checkV4LTranscode" );
  624.     b_v4l_transcode = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(p_check_v4l_transcode));
  625.     if (b_v4l_transcode)
  626.     {
  627.         msg_Dbg( p_intf, "Camera transcode option selected." );
  628.         onAddTranscodeToPlaylist(button, (gchar *)v4l_mrl);
  629.     }
  630.     else
  631.     {
  632.         msg_Dbg( p_intf, "Camera reception option selected." );
  633.         PlaylistAddItem(GTK_WIDGET(button), (gchar*) &v4l_mrl, ppsz_options, i_options);
  634.     }
  635. }
  636. gboolean PlaylistEvent(GtkWidget *widget, GdkEvent *event, gpointer user_data)
  637. {
  638.     return FALSE;
  639. }
  640. void onPlaylistColumnsChanged(GtkTreeView *treeview, gpointer user_data)
  641. {
  642. }
  643. gboolean onPlaylistRowSelected(GtkTreeView *treeview, gboolean start_editing, gpointer user_data)
  644. {
  645.     return FALSE;
  646. }
  647. void onPlaylistRow(GtkTreeView *treeview, GtkTreePath *path,
  648.                    GtkTreeViewColumn *column, gpointer user_data)
  649. {
  650.     intf_thread_t *p_intf = GtkGetIntf( GTK_WIDGET(treeview) );
  651.     GtkTreeSelection *p_selection = gtk_tree_view_get_selection(treeview);
  652.     playlist_t * p_playlist = pl_Hold( p_intf );
  653.     if( p_playlist == NULL )
  654.     {
  655.         return; // FALSE;
  656.     }
  657.     if (gtk_tree_selection_count_selected_rows(p_selection) == 1)
  658.     {
  659.         GtkTreeModel *p_model;
  660.         GtkTreeIter   iter;
  661.         int           i_row;
  662.         int           i_skip;
  663.         /* This might be a directory selection */
  664.         p_model = gtk_tree_view_get_model(treeview);
  665.         if (!p_model)
  666.         {
  667.             msg_Err(p_intf, "PDA: Playlist model contains a NULL pointer" );
  668.             pl_Release( p_intf );
  669.             return;
  670.         }
  671.         if (!gtk_tree_model_get_iter(p_model, &iter, path))
  672.         {
  673.             msg_Err( p_intf, "PDA: Playlist could not get iter from model" );
  674.             pl_Release( p_intf );
  675.             return;
  676.         }
  677.         gtk_tree_model_get(p_model, &iter, 2, &i_row, -1);
  678.         i_skip = i_row - p_playlist->i_current_index;
  679.         playlist_Skip( p_playlist, i_skip );
  680.     }
  681.     pl_Release( p_intf );
  682. }
  683. void onUpdatePlaylist(GtkButton *button, gpointer user_data)
  684. {
  685.     intf_thread_t *  p_intf = GtkGetIntf( button );
  686.     playlist_t * p_playlist = pl_Hold( p_intf );
  687.     GtkTreeView *p_tvplaylist = NULL;
  688.     if( p_playlist == NULL )
  689.     {
  690.         return;
  691.     }
  692.     p_tvplaylist = (GtkTreeView*) lookup_widget( GTK_WIDGET(button), "tvPlaylist");
  693.     if (p_tvplaylist)
  694.     {
  695.         GtkListStore *p_model = NULL;
  696.         /* Rebuild the playlist then. */
  697.         p_model = gtk_list_store_new (3,
  698.                     G_TYPE_STRING, /* Filename */
  699.                     G_TYPE_STRING, /* Time */
  700.                     G_TYPE_UINT);  /* Hidden field */
  701.         if (p_model)
  702.         {
  703.             PlaylistRebuildListStore(p_intf, p_model, p_playlist);
  704.             gtk_tree_view_set_model(GTK_TREE_VIEW(p_tvplaylist), GTK_TREE_MODEL(p_model));
  705.             g_object_unref(p_model);
  706.         }
  707.     }
  708.     pl_Release( p_intf );
  709. }
  710. static void deleteItemFromPlaylist(gpointer data, gpointer user_data)
  711. {
  712.     gtk_tree_path_free((GtkTreePath*) data); // removing an item.
  713. }
  714. void onDeletePlaylist(GtkButton *button, gpointer user_data)
  715. {
  716.     intf_thread_t *p_intf = GtkGetIntf( button );
  717.     playlist_t * p_playlist = pl_Hold( p_intf );
  718.     GtkTreeView    *p_tvplaylist;
  719.     /* Delete an arbitrary item from the playlist */
  720.     p_tvplaylist = (GtkTreeView *) lookup_widget( GTK_WIDGET(button), "tvPlaylist" );
  721.     if (p_tvplaylist != NULL)
  722.     {
  723.         GList *p_rows = NULL;
  724.         GList *p_node;
  725.         GtkTreeModel *p_model = NULL;
  726.         GtkListStore *p_store = NULL;
  727.         GtkTreeSelection *p_selection = gtk_tree_view_get_selection(p_tvplaylist);
  728.         p_model = gtk_tree_view_get_model(p_tvplaylist);
  729.         if (p_model)
  730.         {
  731.             p_rows = gtk_tree_selection_get_selected_rows(p_selection, &p_model);
  732.             if( g_list_length( p_rows ) )
  733.             {
  734.                 /* reverse-sort so that we can delete from the furthest
  735.                  * to the closest item to delete...
  736.                  */
  737.                 p_rows = g_list_reverse( p_rows );
  738.             }
  739.             for (p_node=p_rows; p_node!=NULL; p_node = p_node->next)
  740.             {
  741.                 GtkTreeIter iter;
  742.                 GtkTreePath *p_path = NULL;
  743.                 p_path = (GtkTreePath *)p_node->data;
  744.                 if (p_path)
  745.                 {
  746.                     if (gtk_tree_model_get_iter(p_model, &iter, p_path))
  747.                     {
  748.                         gint item;
  749.                         gtk_tree_model_get(p_model, &iter, 2, &item, -1);
  750.                         msg_Err( p_playlist, "PDA delete broken");
  751.                     }
  752.                 }
  753.             }
  754. #if 0
  755.             g_list_foreach (p_rows, (GFunc*)gtk_tree_path_free, NULL);
  756. #endif /* Testing the next line */
  757.             g_list_foreach (p_rows, deleteItemFromPlaylist, NULL);
  758.             g_list_free (p_rows);
  759.         }
  760.         /* Rebuild the playlist then. */
  761.         p_store = gtk_list_store_new (3,
  762.                     G_TYPE_STRING, /* Filename */
  763.                     G_TYPE_STRING, /* Time */
  764.                     G_TYPE_UINT);  /* Hidden field */
  765.         if (p_store)
  766.         {
  767.             PlaylistRebuildListStore(p_intf, p_store, p_playlist);
  768.             gtk_tree_view_set_model(GTK_TREE_VIEW(p_tvplaylist), GTK_TREE_MODEL(p_store));
  769.             g_object_unref(p_store);
  770.         }
  771.     }
  772.     pl_Release( p_intf );
  773. }
  774. void onClearPlaylist(GtkButton *button, gpointer user_data)
  775. {
  776.     intf_thread_t *p_intf = GtkGetIntf( button );
  777.     playlist_t * p_playlist = pl_Hold( p_intf );
  778.     GtkTreeView    *p_tvplaylist;
  779.     int item;
  780.     if( p_playlist == NULL )
  781.     {
  782.         return;
  783.     }
  784.     for(item = playlist_CurrentSize(p_playlist) - 1; item >= 0 ;item-- )
  785.     {
  786.         msg_Err( p_playlist, "fix pda delete" );
  787.     }
  788.     pl_Release( p_intf );
  789.     // Remove all entries from the Playlist widget.
  790.     p_tvplaylist = (GtkTreeView*) lookup_widget( GTK_WIDGET(button), "tvPlaylist");
  791.     if (p_tvplaylist)
  792.     {
  793.         GtkTreeModel *p_play_model;
  794.         p_play_model = gtk_tree_view_get_model(p_tvplaylist);
  795.         if (p_play_model)
  796.         {
  797.             gtk_list_store_clear(GTK_LIST_STORE(p_play_model));
  798.         }
  799.     }
  800. }
  801. void onPreferenceSave(GtkButton *button, gpointer user_data)
  802. {
  803. #if 0
  804.     intf_thread_t *p_intf = GtkGetIntf( button );
  805.     msg_Dbg(p_intf, "Preferences Save" );
  806.     config_SaveConfigFile( p_intf, NULL );
  807. #endif
  808. }
  809. void onPreferenceApply(GtkButton *button, gpointer user_data)
  810. {
  811. #if 0
  812.     intf_thread_t *p_intf = GtkGetIntf( button );
  813.     msg_Dbg(p_intf, "Preferences Apply" );
  814. #endif
  815. }
  816. void onPreferenceCancel(GtkButton *button, gpointer user_data)
  817. {
  818. #if 0
  819.     intf_thread_t *p_intf = GtkGetIntf( button );
  820.     msg_Dbg(p_intf, "Preferences Cancel" );
  821.     config_ResetAll( p_intf );
  822.     /* Cancel interface changes. */
  823.     config_SaveConfigFile( p_intf, NULL );
  824. #endif
  825. }
  826. void onAddTranscodeToPlaylist(GtkButton *button, gpointer user_data)
  827. {
  828.     intf_thread_t *p_intf = GtkGetIntf( button );
  829.     GtkEntry       *p_entryVideoCodec = NULL;
  830.     GtkSpinButton  *p_entryVideoBitrate = NULL;
  831.     GtkSpinButton  *p_entryVideoBitrateTolerance = NULL;
  832.     GtkSpinButton  *p_entryVideoKeyFrameInterval = NULL;
  833.     GtkCheckButton *p_checkVideoDeinterlace = NULL;
  834.     GtkEntry       *p_entryAudioCodec = NULL;
  835.     GtkSpinButton  *p_entryAudioBitrate = NULL;
  836.     const gchar    *p_video_codec;
  837.     gint            i_video_bitrate;
  838.     gint            i_video_bitrate_tolerance;
  839.     gint            i_video_keyframe_interval;
  840.     gboolean        b_video_deinterlace;
  841.     const gchar    *p_audio_codec;
  842.     gint            i_audio_bitrate;
  843.     GtkEntry       *p_entryStdAccess = NULL;
  844.     GtkEntry       *p_entryStdMuxer = NULL;
  845.     GtkEntry       *p_entryStdURL = NULL;
  846.     GtkEntry       *p_entryStdAnnounce = NULL;
  847.     GtkSpinButton  *p_entryStdTTL = NULL;
  848.     GtkCheckButton *p_checkSAP = NULL;
  849.     GtkCheckButton *p_checkSLP = NULL;
  850.     const gchar    *p_std_announce;
  851.     const gchar    *p_std_access;
  852.     const gchar    *p_std_muxer;
  853.     const gchar    *p_std_url;
  854.     gboolean        b_sap_announce;
  855.     gboolean        b_slp_announce;
  856.     gint            i_std_ttl;
  857.     char **ppsz_options = NULL; /* list of options */
  858.     int  i_options=0;
  859.     int  i;
  860.     gchar mrl[7];
  861.     int   i_pos;
  862.     ppsz_options = (char **) malloc(3 *sizeof(char*));
  863.     if (ppsz_options == NULL)
  864.         return;
  865.     for (i=0; i<3; i++)
  866.     {
  867.         ppsz_options[i] = (char *) malloc(VLC_MAX_MRL);
  868.         if (ppsz_options[i] == NULL)
  869.         {
  870.             for (i-=1; i>=0; i--)
  871.                 free(ppsz_options[i]);
  872.             free(ppsz_options);
  873.             return;
  874.         }
  875.     }
  876.     /* Update the playlist */
  877.     playlist_t *p_playlist = pl_Hold( p_intf );
  878.     if( p_playlist == NULL ) return;
  879.     pl_Release( p_intf );
  880.     /* Get all the options. */
  881.     i_pos = snprintf( &mrl[0], VLC_MAX_MRL, "sout");
  882.     mrl[6] = '';
  883.     /* option 1 */
  884.     i_pos = snprintf( &ppsz_options[i_options][0], VLC_MAX_MRL, "sout='#transcode{");
  885.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  886.     p_entryVideoCodec   = (GtkEntry*) lookup_widget( GTK_WIDGET(button), "entryVideoCodec" );
  887.     p_entryVideoBitrate = (GtkSpinButton*) lookup_widget( GTK_WIDGET(button), "entryVideoBitrate" );
  888.     p_entryVideoBitrateTolerance = (GtkSpinButton*) lookup_widget( GTK_WIDGET(button), "entryVideoBitrateTolerance" );
  889.     p_entryVideoKeyFrameInterval = (GtkSpinButton*) lookup_widget( GTK_WIDGET(button), "entryVideoKeyFrameInterval" );
  890.  
  891.     p_video_codec = gtk_entry_get_text(GTK_ENTRY(p_entryVideoCodec));
  892.     i_video_bitrate = gtk_spin_button_get_value_as_int(p_entryVideoBitrate);
  893.     i_video_bitrate_tolerance = gtk_spin_button_get_value_as_int(p_entryVideoBitrateTolerance);
  894.     i_video_keyframe_interval = gtk_spin_button_get_value_as_int(p_entryVideoKeyFrameInterval);
  895.  
  896.     i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "vcodec=%s,", (char*)p_video_codec );
  897.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  898.     i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "vb=%d,", (int)i_video_bitrate );
  899.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  900.     i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "vt=%d,", (int)i_video_bitrate_tolerance );
  901.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  902.     i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "keyint=%d,", (int)i_video_keyframe_interval );
  903.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  904.     p_checkVideoDeinterlace = (GtkCheckButton*) lookup_widget( GTK_WIDGET(button), "checkVideoDeinterlace" );
  905.     b_video_deinterlace = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(p_checkVideoDeinterlace));
  906.     if (b_video_deinterlace)
  907.     {
  908.         i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "deinterlace," );
  909.         if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  910.     }
  911.     p_entryAudioCodec   = (GtkEntry*) lookup_widget( GTK_WIDGET(button), "entryAudioCodec" );
  912.     p_entryAudioBitrate = (GtkSpinButton*) lookup_widget( GTK_WIDGET(button), "entryAudioBitrate" );
  913.     p_audio_codec = gtk_entry_get_text(GTK_ENTRY(p_entryAudioCodec));
  914.     i_audio_bitrate = gtk_spin_button_get_value_as_int(p_entryAudioBitrate);
  915.     i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "acodec=%s,", (char*)p_audio_codec );
  916.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  917.     i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "ab=%d,", (int)i_audio_bitrate );
  918.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  919.     i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "channels=1}"/*, (int)i_audio_channels*/ );
  920.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  921.     /* option 2 */
  922.     i_pos = 0;
  923.     i_pos = snprintf( &ppsz_options[i_options++][i_pos], VLC_MAX_MRL - i_pos, "#" );
  924.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  925.     p_entryStdAccess = (GtkEntry*) lookup_widget( GTK_WIDGET(button), "entryStdAccess" );
  926.     p_entryStdMuxer  = (GtkEntry*) lookup_widget( GTK_WIDGET(button), "entryStdMuxer" );
  927.     p_entryStdURL = (GtkEntry*) lookup_widget( GTK_WIDGET(button), "entryStdURL" );
  928.     p_entryStdAnnounce = (GtkEntry*) lookup_widget( GTK_WIDGET(button), "entryAnnounceChannel" );
  929.     p_entryStdTTL = (GtkSpinButton*) lookup_widget( GTK_WIDGET(button), "entryStdTTL" );
  930.     p_std_access = gtk_entry_get_text(GTK_ENTRY(p_entryStdAccess));
  931.     p_std_muxer = gtk_entry_get_text(GTK_ENTRY(p_entryStdMuxer));
  932.     p_std_url = gtk_entry_get_text(GTK_ENTRY(p_entryStdURL));
  933.     p_std_announce = gtk_entry_get_text(GTK_ENTRY(p_entryStdAnnounce));
  934.     b_sap_announce = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(p_checkSAP));
  935.     b_slp_announce = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(p_checkSLP));
  936.     i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "std{access=%s,", (char*)p_std_access);
  937.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  938.     i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "mux=%s,", (char*)p_std_muxer);
  939.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  940.     i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "dst=%s", (char*)p_std_url);
  941.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  942.     if (strncasecmp( (const char*)p_std_access, "udp", 3)==0)
  943.     {
  944.         if (b_sap_announce)
  945.         {
  946.             i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "sap=%s", (char*)p_std_announce);
  947.             if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  948.         }
  949.         if (b_slp_announce)
  950.         {
  951.             i_pos += snprintf( &ppsz_options[i_options][i_pos], VLC_MAX_MRL - i_pos, "slp=%s", (char*)p_std_announce);
  952.             if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  953.         }
  954.     }
  955.     i_std_ttl = gtk_spin_button_get_value_as_int(p_entryStdTTL);
  956.     i_pos += snprintf( &ppsz_options[i_options++][i_pos], VLC_MAX_MRL - i_pos, "ttl=%d}", (int)i_std_ttl);
  957.     if (i_pos>=VLC_MAX_MRL) ppsz_options[i_options][VLC_MAX_MRL-1] = '';
  958.     if (user_data != NULL)
  959.     {
  960.       msg_Dbg(p_intf, "Adding transcoding options to playlist item." );
  961.     }
  962.     else
  963.     {
  964.       msg_Dbg(p_intf, "Adding --sout to playlist." );
  965.       PlaylistAddItem(GTK_WIDGET(button), (gchar*) &mrl, ppsz_options, i_options);
  966.     }
  967. }
  968. void onEntryStdAccessChanged(GtkEditable *editable, gpointer user_data)
  969. {
  970.     intf_thread_t *p_intf = GtkGetIntf( editable );
  971.     GtkCheckButton *p_checkSAP = NULL;
  972.     GtkCheckButton *p_checkSLP = NULL;
  973.     GtkEntry       *p_entryStdAccess = NULL;
  974.     const gchar    *p_std_access = NULL;
  975.     gboolean        b_announce = FALSE;
  976.     p_entryStdAccess = (GtkEntry*) lookup_widget( GTK_WIDGET(editable), "entryStdAccess" );
  977.     p_checkSAP = (GtkCheckButton*) lookup_widget( GTK_WIDGET(editable), "checkSAP" );
  978.     p_checkSLP = (GtkCheckButton*) lookup_widget( GTK_WIDGET(editable), "checkSLP" );
  979.     if ( (p_std_access == NULL) || (p_checkSAP == NULL) || (p_checkSLP == NULL))
  980.     {
  981.         msg_Err( p_intf, "Access, SAP and SLP widgets not found." );
  982.         return;
  983.     }
  984.     p_std_access = gtk_entry_get_text(GTK_ENTRY(p_entryStdAccess));
  985.     b_announce = (strncasecmp( (const char*)p_std_access, "udp", 3) == 0);
  986.     gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(p_checkSAP), b_announce);
  987.     gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(p_checkSLP), b_announce);
  988. }