Commit dfedddf3 authored by Clément Stenac's avatar Clément Stenac

Who said I'm bored ?

parent dae0444f
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
# best knowledge of the code, so that questions and propositions of # best knowledge of the code, so that questions and propositions of
# contributions should be directed to her. # contributions should be directed to her.
* MISC VLC ARCHITECTURE * CORE VLC ARCHITECTURE
- Makefiles & autoconf : [sam] & [meuuh] - Makefiles & autoconf : [sam] [meuuh] [courmisch]
- configuration & command-line options : [gibalou] - configuration & command-line options : [gibalou]
- modules, detection, dynamic loading : [sam] - modules, detection, dynamic loading : [sam]
- objects support, libvlc : [sam] - objects support, libvlc : [sam]
...@@ -19,76 +19,78 @@ ...@@ -19,76 +19,78 @@
- MMX optimizations : [sam] - MMX optimizations : [sam]
- Altivec optimizations : [meuuh] ([jlj]) - Altivec optimizations : [meuuh] ([jlj])
* PLAYLIST
- core support [zorglub]
* PORTS * PORTS
- Debian GNU/Linux : [sam] - Debian GNU/Linux : [sam]
- Mandrake Linux : Yves Duret - Mandrake Linux : Yves Duret
- BeOS : Eric Petit (Stephan Assmus) - BeOS : Eric Petit (Stephan Assmus)
- Windows : [gibalou] - Windows : [gibalou]
- Mac OS X : [thedj]) - Mac OS X : [thedj]
- QNX RTOS : [jlj] - QNX RTOS : [jlj]
- Solaris : [meuuh] - Solaris : [meuuh]
- *BSD : [meuuh] - *BSD : [meuuh]
- GNU/Hurd : [sam] - GNU/Hurd : [sam]
- iPAQ Familiar Linux : [saman] & [marcari] ([meuuh]) - iPAQ Familiar Linux : [jpsaman]
- YOPY/Linupy : [marcari] - YOPY/Linupy : [marcari]
- BSD/OS : Steven M. Schultz - BSD/OS : Steven M. Schultz
* INTERFACE * INTERFACE
- interface architecture : [sam] - interface architecture : [sam] [zorglub]
- modules gtk, gnome : [sam] ([stef]) - wxWidgets : [gibalou] [zorglub]
- modules lirc, dummy, rc, ncurses : [sam] - skins2 : [ipkiss] [asmax]
- modules qt, kde : [sigmund] - macosx : [thedj] [bigben] [fkuehne]
- module xosd : [lool] - lirc, dummy, rc, ncurses : [sam]
- module familar : [saman] - corba : [oaubert]
- familiar : [jpsaman]
- http : [meuuh]
* VIDEO OUTPUT * VIDEO OUTPUT
- video output architecture : [sam] - Video output architecture : [sam] [gibalou]
- modules dummy, fb, ggi, glide, mga, sdl : [sam] - dummy, fb, ggi, glide, mga, sdl : [sam]
- output filters & chroma : [sam] - Filters & chroma : [sam] [gibalou]
- modules x11, xvideo : [gibalou] - X11, Xvideo : [gibalou]
- module aa : [sigmund] - Directx : [gibalou]
- module qte : [saman]
* AUDIO OUTPUT * AUDIO OUTPUT
- audio output architecture : [sam] ([meuuh]) - audio output architecture : [sam] ([meuuh])
- module ALSA : [bozo] - ALSA : [bozo] [bigben]
- module aRts : Emmanuel Blindauer - DirectX : [gibalou]
- modules dsp, dummy, esd : [sam] ([meuuh]) - AUHAL : [thedj]
- output filters : [sam] ([meuuh]) - Other : [sam] ([meuuh])
- Filters : [sam] [babal] [meuuh]
* INPUT * INPUT
- input architecture : [meuuh] - input architecture : [meuuh] [fenrir]
- demux modules PS, ES, a52_system : [meuuh] - Most Demuxers : [fenrir] [gibalou]
- access modules file, udp, http : [meuuh] - DRMS support : [jlj] [sam]
- demux modules TS, satellite : [jobi] - DVB access : [meuuh]
- network modules ipv4, ipv6 : [meuuh] - DVD : [sam]
- demux module mpeg_audio (mp3), avi : [fenrir] - network layer : [courmisch]
- DVD module : [stef]
- VCD module : [jobi] ([jlj]) * DECODER
* DECODERS - decoders architecture : [meuuh] [gibalou] ([henri])
- ffmpeg : [fenrir] [gibalou]
- decoders architecture : [meuuh] ([henri])
- built-in MPEG audio : unmaintained (FIXME)
- built-in MPEG video & associated idct+motion : [meuuh]
- built-in AC3 & associated plug-ins : Renaud Dartus (soon-to-be scrapped)
- mad : [saman] ([meuuh])
- ffmpeg : [fenrir]
- AC3 SPDIF : [stef] - AC3 SPDIF : [stef]
- A/52 : [gibalou] ([meuuh]) - A/52 : [gibalou] ([meuuh])
- SPU : [sam] - SPU : [sam]
- Ogg/Vorbis : [gibalou]
* MISC
- VLM
- HTTPD : [fenrir]
* DOCUMENTATION * DOCUMENTATION
- VLC HOWTO : [jobi]
- Developer documentation : [sam] ([meuuh]) - Developer documentation : [sam] ([meuuh])
- FAQ : [lool]
[bozo] = Arnaud de Bossoreille de Ribou [bozo] = Arnaud de Bossoreille de Ribou
......
...@@ -923,9 +923,9 @@ int VLC_CleanUp( int i_object ) ...@@ -923,9 +923,9 @@ int VLC_CleanUp( int i_object )
} }
/* /*
* Free playlists * Free playlist
*/ */
msg_Dbg( p_vlc, "removing all playlists" ); msg_Dbg( p_vlc, "removing playlist handler" );
while( (p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST, while( (p_playlist = vlc_object_find( p_vlc, VLC_OBJECT_PLAYLIST,
FIND_CHILD )) ) FIND_CHILD )) )
{ {
...@@ -959,14 +959,14 @@ int VLC_CleanUp( int i_object ) ...@@ -959,14 +959,14 @@ int VLC_CleanUp( int i_object )
/* /*
* Free announce handler(s?) * Free announce handler(s?)
*/ */
msg_Dbg( p_vlc, "removing announce handler" );
while( (p_announce = vlc_object_find( p_vlc, VLC_OBJECT_ANNOUNCE, while( (p_announce = vlc_object_find( p_vlc, VLC_OBJECT_ANNOUNCE,
FIND_CHILD ) ) ) FIND_CHILD ) ) )
{ {
msg_Dbg( p_vlc, "removing announce handler" );
vlc_object_detach( p_announce ); vlc_object_detach( p_announce );
vlc_object_release( p_announce ); vlc_object_release( p_announce );
announce_HandlerDestroy( p_announce ); announce_HandlerDestroy( p_announce );
} }
if( i_object ) vlc_object_release( p_vlc ); if( i_object ) vlc_object_release( p_vlc );
return VLC_SUCCESS; return VLC_SUCCESS;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment