]> git.sesse.net Git - vlc/commitdiff
MSN notify: remove plugin
authorRémi Denis-Courmont <remi@remlab.net>
Sun, 29 Jul 2012 14:24:52 +0000 (17:24 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sun, 29 Jul 2012 14:27:13 +0000 (17:27 +0300)
As discussed last May, this has been silently broken since VLC 1.0.0.

NEWS
modules/LIST
modules/notify/Modules.am
modules/notify/msn.c [deleted file]
po/POTFILES.in

diff --git a/NEWS b/NEWS
index 36c147ef61c7f6a2383f22466c9ddb4db20111db..4c33c673618b4a59dc82a3d153f4c9340a0f18cd 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -83,6 +83,7 @@ Removed modules:
  * RTMP access: use libavformat avio instead
  * RTMP access_output: use libavformat avio instead
  * Hildon GUI
+ * MSN messenger "now playing" (broken and unmaintained since VLC 1.0.0)
 
 
 Changes between 2.0.2 and 2.0.3:
index 3f2cce3386887645f8bcf24d60b131f4cf43d331..7a3b2560d02a35c9d8e5db36a1d3cd84ffefd63a 100644 (file)
@@ -207,7 +207,6 @@ $Id$
  * mpeg_audio: MPEG audio parser/packetizer
  * mpgatofixed32: MPEG-1 & 2 audio layer I,II,III audio decoder using MAD
  * mpgv: MPEG-I/II Video demuxer
- * msn: announce currently playing stream to MSN
  * mtp: MTP interface module
  * mux_asf: ASF muxer
  * mux_avi: AVI muxer
index 56a0567aef68d49278692ef28d18b75d40406817..0b4031f915d7a94a7425251ba085487501037c80 100644 (file)
@@ -3,13 +3,6 @@
 # obviously does not. Here is a fix for that.
 LIBTOOL=@LIBTOOL@ --tag=CC
 
-SOURCES_msn = msn.c
 SOURCES_growl = growl.m
 SOURCES_notify = notify.c
 SOURCES_telepathy = telepathy.c
-
-if HAVE_WIN32
-if !HAVE_WINCE
-libvlc_LTLIBRARIES += libmsn_plugin.la
-endif
-endif
diff --git a/modules/notify/msn.c b/modules/notify/msn.c
deleted file mode 100644 (file)
index e1fa8c3..0000000
+++ /dev/null
@@ -1,193 +0,0 @@
-/*****************************************************************************
- * msn.c : msn title plugin
- *****************************************************************************
- * Copyright (C) 2005-2010 the VideoLAN team
- * $Id$
- *
- * Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- *****************************************************************************/
-
-/*****************************************************************************
- * Preamble
- *****************************************************************************/
-
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
-#include <vlc_common.h>
-#include <vlc_plugin.h>
-#include <vlc_interface.h>
-#include <vlc_playlist.h>                                      /* playlist_t */
-#include <vlc_charset.h>                                           /* ToWide */
-
-/*****************************************************************************
- * intf_sys_t: description and status of log interface
- *****************************************************************************/
-struct intf_sys_t
-{
-    char *psz_format;
-};
-
-/*****************************************************************************
- * Local prototypes
- *****************************************************************************/
-static int  Open    ( vlc_object_t * );
-static void Close   ( vlc_object_t * );
-
-static int ItemChange( vlc_object_t *, const char *,
-                       vlc_value_t, vlc_value_t, void * );
-static int SendToMSN( const char * psz_msg );
-
-#define MSN_MAX_LENGTH 256
-
-/*****************************************************************************
- * Module descriptor
- *****************************************************************************
- * This module should be used on windows with MSN (i think that you need to
- * have MSN 7 or newer) to "advertise" what you are playing in VLC.
- * You need to enable the "What I'm Listening To" option in MSN.
- *****************************************************************************/
-#define FORMAT_DEFAULT "{0} - {1}"
-#define FORMAT_TEXT N_("Title format string")
-#define FORMAT_LONGTEXT N_("Format of the string to send to MSN " \
-"{0} Artist, {1} Title, {2} Album. Defaults to \"Artist - Title\" ({0} - {1}).")
-
-vlc_module_begin ()
-    set_category( CAT_INTERFACE )
-    set_subcategory( SUBCAT_INTERFACE_CONTROL )
-    set_shortname( "MSN" )
-    set_description( N_("MSN Now-Playing") )
-
-    add_string( "msn-format", FORMAT_DEFAULT,
-                FORMAT_TEXT, FORMAT_LONGTEXT, false )
-
-    set_capability( "interface", 0 )
-    set_callbacks( Open, Close )
-vlc_module_end ()
-
-/*****************************************************************************
- * Open: initialize and create stuff
- *****************************************************************************/
-static int Open( vlc_object_t *p_this )
-{
-    intf_thread_t *p_intf = (intf_thread_t *)p_this;
-    playlist_t *p_playlist;
-
-    p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
-    if( !p_intf->p_sys )
-        return VLC_ENOMEM;
-
-    p_intf->p_sys->psz_format = var_InheritString( p_intf, "msn-format" );
-    if( !p_intf->p_sys->psz_format )
-        p_intf->p_sys->psz_format = strdup( FORMAT_DEFAULT );
-
-    msg_Dbg( p_intf, "using MSN format: %s", p_intf->p_sys->psz_format );
-
-    p_playlist = pl_Get( p_intf );
-    var_AddCallback( p_playlist, "item-change", ItemChange, p_intf );
-    var_AddCallback( p_playlist, "item-current", ItemChange, p_intf );
-
-    return VLC_SUCCESS;
-}
-
-/*****************************************************************************
- * Close: destroy interface stuff
- *****************************************************************************/
-static void Close( vlc_object_t *p_this )
-{
-    intf_thread_t *p_intf = (intf_thread_t *)p_this;
-    playlist_t *p_playlist = pl_Get( p_this );
-
-    /* clear the MSN stuff ... else it looks like we're still playing
-     * something although VLC (or the MSN plugin) is closed */
-    SendToMSN( "\\0Music\\01\\0\\0\\0\\0\\0\\0\\0" );
-
-    var_DelCallback( p_playlist, "item-change", ItemChange, p_intf );
-    var_DelCallback( p_playlist, "item-current", ItemChange, p_intf );
-
-    /* Destroy structure */
-    free( p_intf->p_sys->psz_format );
-    free( p_intf->p_sys );
-}
-
-/*****************************************************************************
- * ItemChange: Playlist item change callback
- *****************************************************************************/
-static int ItemChange( vlc_object_t *p_this, const char *psz_var,
-                       vlc_value_t oldval, vlc_value_t newval, void *param )
-{
-    (void)psz_var;    (void)oldval;    (void)newval;
-    intf_thread_t *p_intf = (intf_thread_t *)param;
-    char psz_tmp[MSN_MAX_LENGTH];
-    input_thread_t *p_input =  playlist_CurrentInput( (playlist_t *) p_this );
-
-    if( !p_input ) return VLC_SUCCESS;
-
-    if( p_input->b_dead || !input_GetItem(p_input)->psz_name )
-    {
-        /* Not playing anything ... */
-        SendToMSN( "\\0Music\\01\\0\\0\\0\\0\\0\\0\\0" );
-        vlc_object_release( p_input );
-        return VLC_SUCCESS;
-    }
-
-    /* Playing something ... */
-    char *psz_artist = input_item_GetArtist( input_GetItem( p_input ) );
-    char *psz_album = input_item_GetAlbum( input_GetItem( p_input ) );
-    char *psz_title = input_item_GetTitleFbName( input_GetItem( p_input ) );
-
-    snprintf( psz_tmp,
-              MSN_MAX_LENGTH,
-              "\\0Music\\01\\0%s\\0%s\\0%s\\0%s\\0\\0\\0",
-              p_intf->p_sys->psz_format,
-              psz_artist ? psz_artist : "",
-              psz_title ? psz_title : "",
-              psz_album );
-    free( psz_title );
-    free( psz_artist );
-    free( psz_album );
-
-    SendToMSN( (const char*)psz_tmp );
-    vlc_object_release( p_input );
-
-    return VLC_SUCCESS;
-}
-
-/*****************************************************************************
- * SendToMSN
- *****************************************************************************/
-static int SendToMSN( const char *psz_msg )
-{
-    COPYDATASTRUCT msndata;
-    HWND msnui = NULL;
-
-    wchar_t *wmsg = ToWide( psz_msg );
-    if( unlikely(wmsg == NULL) )
-        return VLC_ENOMEM;
-
-    msndata.dwData = 0x547;
-    msndata.lpData = wmsg;
-    msndata.cbData = (wcslen(wmsg) + 1) * 2;
-
-    while( ( msnui = FindWindowEx( NULL, msnui, "MsnMsgrUIManager", NULL ) ) )
-    {
-        SendMessage(msnui, WM_COPYDATA, (WPARAM)NULL, (LPARAM)&msndata);
-    }
-    free( wmsg );
-    return VLC_SUCCESS;
-}
index 006371dd648bcab54e72d5ac85959b65e96e2061..df57c69f4a87acbda25f9481695c6c6d2208ef39 100644 (file)
@@ -950,7 +950,6 @@ modules/mux/mpjpeg.c
 modules/mux/ogg.c
 modules/mux/wav.c
 modules/notify/growl.m
-modules/notify/msn.c
 modules/notify/notify.c
 modules/notify/telepathy.c
 modules/packetizer/copy.c