Show
Ignore:
Timestamp:
05/15/08 18:40:44 (4 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1210869644 +0300
git-parent:

[703887976e34ccdfa64d31079973bfb97fc93db1]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1210869644 +0300
Message:

Rename the shared libraries

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bindings/cil/src/exception.cs

    r66af5fd r84d0f81  
    11/* 
    2  * libvlc.cs - libvlc-control CIL bindings 
     2 * libvlc.cs - libvlc CIL bindings 
    33 * 
    44 * $Id$ 
     
    6969        IntPtr message; 
    7070 
    71         [DllImport ("libvlc-control.dll", EntryPoint="libvlc_exception_init")] 
     71        [DllImport ("libvlc.dll", EntryPoint="libvlc_exception_init")] 
    7272        static extern void Init (NativeException e); 
    73         [DllImport ("libvlc-control.dll", EntryPoint="libvlc_exception_clear")] 
     73        [DllImport ("libvlc.dll", EntryPoint="libvlc_exception_clear")] 
    7474        static extern void Clear (NativeException e); 
    75         /*[DllImport ("libvlc-control.dll", 
     75        /*[DllImport ("libvlc.dll", 
    7676                    EntryPoint="libvlc_exception_raised")] 
    7777        static extern int Raised (NativeException e);*/ 
    78         [DllImport ("libvlc-control.dll", 
     78        [DllImport ("libvlc.dll", 
    7979                    EntryPoint="libvlc_exception_get_message")] 
    8080        static extern IntPtr GetMessage (NativeException e); 
  • bindings/cil/src/libvlc.cs

    rbf1292e r84d0f81  
    11/** 
    22 * @file libvlc.cs 
    3  * @brief libvlc-control CIL bindings 
     3 * @brief libvlc CIL bindings 
    44 * 
    55 * $Id$ 
     
    7272        } 
    7373 
    74         [DllImport ("libvlc-control.dll", EntryPoint="libvlc_new")] 
     74        [DllImport ("libvlc.dll", EntryPoint="libvlc_new")] 
    7575        internal static extern 
    7676        InstanceHandle Create (int argc, U8String[] argv, NativeException ex); 
    7777 
    78         [DllImport ("libvlc-control.dll", EntryPoint="libvlc_release")] 
     78        [DllImport ("libvlc.dll", EntryPoint="libvlc_release")] 
    7979        static extern void Destroy (IntPtr ptr, NativeException ex); 
    8080 
     
    116116        } 
    117117 
    118         [DllImport ("libvlc-control.dll", EntryPoint="libvlc_playlist_loop")] 
     118        [DllImport ("libvlc.dll", EntryPoint="libvlc_playlist_loop")] 
    119119        static extern void PlaylistLoop (InstanceHandle self, bool b, 
    120120                                         NativeException ex); 
     
    129129        } 
    130130 
    131         [DllImport ("libvlc-control.dll", EntryPoint="libvlc_playlist_play")] 
     131        [DllImport ("libvlc.dll", EntryPoint="libvlc_playlist_play")] 
    132132        static extern void PlaylistPlay (InstanceHandle self, int id, int optc, 
    133133                                         U8String[] optv, NativeException ex); 
     
    139139        } 
    140140 
    141         [DllImport ("libvlc-control.dll", EntryPoint="libvlc_playlist_pause")] 
     141        [DllImport ("libvlc.dll", EntryPoint="libvlc_playlist_pause")] 
    142142        static extern void PlaylistPause (InstanceHandle self, 
    143143                                          NativeException ex); 
     
    149149        } 
    150150 
    151         [DllImport ("libvlc-control.dll", 
     151        [DllImport ("libvlc.dll", 
    152152                    EntryPoint="libvlc_playlist_isplaying")] 
    153153        static extern int PlaylistIsPlaying (InstanceHandle self, 
     
    164164        } 
    165165 
    166         [DllImport ("libvlc-control.dll", EntryPoint="libvlc_playlist_stop")] 
     166        [DllImport ("libvlc.dll", EntryPoint="libvlc_playlist_stop")] 
    167167        static extern void PlaylistStop (InstanceHandle self, 
    168168                                         NativeException ex); 
     
    174174        } 
    175175 
    176         [DllImport ("libvlc-control.dll", EntryPoint="libvlc_playlist_next")] 
     176        [DllImport ("libvlc.dll", EntryPoint="libvlc_playlist_next")] 
    177177        static extern void PlaylistNext (InstanceHandle self, 
    178178                                         NativeException ex); 
     
    184184        } 
    185185 
    186         [DllImport ("libvlc-control.dll", EntryPoint="libvlc_playlist_prev")] 
     186        [DllImport ("libvlc.dll", EntryPoint="libvlc_playlist_prev")] 
    187187        static extern void PlaylistPrev (InstanceHandle self, 
    188188                                         NativeException ex); 
     
    194194        } 
    195195 
    196         [DllImport ("libvlc-control.dll", EntryPoint="libvlc_playlist_clear")] 
     196        [DllImport ("libvlc.dll", EntryPoint="libvlc_playlist_clear")] 
    197197        static extern void PlaylistClear (InstanceHandle self, 
    198198                                          NativeException ex); 
     
    208208        } 
    209209 
    210         [DllImport ("libvlc-control.dll", 
     210        [DllImport ("libvlc.dll", 
    211211                    EntryPoint="libvlc_playlist_add_extended")] 
    212212        static extern int PlaylistAdd (InstanceHandle self, U8String uri, 
     
    265265        } 
    266266 
    267         [DllImport ("libvlc-control.dll", 
     267        [DllImport ("libvlc.dll", 
    268268                    EntryPoint="libvlc_playlist_delete_item")] 
    269269        static extern int PlaylistDelete (InstanceHandle self, int id, 
     
    321321        } 
    322322 
    323         [DllImport ("libvlc-control.dll", 
     323        [DllImport ("libvlc.dll", 
    324324                    EntryPoint="libvlc_media_new")] 
    325325        public static extern 
     
    327327                                 NativeException ex); 
    328328 
    329         [DllImport ("libvlc-control.dll", 
     329        [DllImport ("libvlc.dll", 
    330330                    EntryPoint="libvlc_media_release")] 
    331331        public static extern void Release (IntPtr ptr); 
  • bindings/cil/tests/testvlc.cs

    ra2aa6ae r84d0f81  
    11/* 
    2  * testvlc.cs - tests for libvlc-control CIL bindings 
     2 * testvlc.cs - tests for libvlc CIL bindings 
    33 * 
    44 * $Id$ 
  • bindings/java/core/src/main/java/org/videolan/jvlc/internal/LibVlc.java

    r88ff21f r84d0f81  
    3939{ 
    4040 
    41     LibVlc INSTANCE = (LibVlc) Native.loadLibrary("vlc-control", LibVlc.class); 
     41    LibVlc INSTANCE = (LibVlc) Native.loadLibrary("vlc", LibVlc.class); 
    4242 
    4343    LibVlc SYNC_INSTANCE = (LibVlc) Native.synchronizedLibrary(INSTANCE); 
  • bindings/python/setup.py

    r03dbdfe r84d0f81  
    7272    vlcconfig=get_vlcconfig() 
    7373    if vlcconfig is None: 
    74         return [ '-lvlc-control' ] 
     74        return [ '-lvlc' ] 
    7575    else: 
    7676    ldflags = [] 
     
    8282        ldflags.append('-lstdc++') 
    8383        if not libtool: 
    84             # vlc-config is broken and gives a -lvlc-control which 
     84            # vlc-config is broken and gives a -lvlc which 
    8585            # does not exist if libtool is disabled. 
    86             ldflags.remove('-lvlc-control') 
     86            ldflags.remove('-lvlc') 
    8787        return ldflags 
    8888