pda_callbacks.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:41k
源码类别:

多媒体

开发平台:

MultiPlatform

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