Commit b53e633c authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Don't release the VLCWindow on QTClose. The mainthread still needs it.

* Updated TODO list
parent 7a4202c7
...@@ -202,6 +202,14 @@ Description: New OS X preferences ...@@ -202,6 +202,14 @@ Description: New OS X preferences
Pref. elements are broken (hotkeys and int with string desc.). Pref. elements are broken (hotkeys and int with string desc.).
Status: Todo Status: Todo
Task
Difficulty: Easy
Urgency: Normal
Platform: Mac OS X
Description: OS X bookmarks window
We miss a bookmarks window like the wxwidget one.
Status: Todo
Task Task
Difficulty: Hard Difficulty: Hard
Urgency: Critical Urgency: Critical
...@@ -222,42 +230,33 @@ Description: Stream text subtitles ...@@ -222,42 +230,33 @@ Description: Stream text subtitles
Find a a way to stream text subtitles, in TS and in RTP. Find a a way to stream text subtitles, in TS and in RTP.
- Find an existing norm - Find an existing norm
- Implement it - Implement it
(40% done) needs to be tested and validated <br />Needs testing and validating
Status: Assigned to fenrir Status: 65% (fenrir)
Task Task
Difficulty: Easy Difficulty: Medium
Urgency: Normal
Platform: any
Description: Fix up text subtitles
Currently the subtitle dialog boxes are out of date and not really useable. Also we need more files to test and verify the current support. Other issues should mostly be dealt with after the vout systems are improved. For SSA support positioning and color needs to be added for instance.
Status: Todo
Task
Difficulty: Hard
Urgency: Normal Urgency: Normal
Platform: any Platform: any
Description: Rework spu decoder Description: RTSP server
The spu decoder needs some serious work Full implementation of a RTSP server.
- Split/merge for dvd menu highlighting Status: 80%
- Downscaling for divx/mkv etc
- .sub/.idx support
Status: todo
Task Task
Difficulty: Hard Difficulty: Medium
Urgency: Normal Urgency: Normal
Platform: any Platform: any
Description: RTSP server Description: Add VoD module for VLM
Full implementation of a RTSP server. Add a VoD module for VLM, so that we can create a RTSP server that can
Status: fenrir has some code provide unicast RTSP sessions upon contacting the VoD module. See the following
<a href="http://via.ecp.fr/via/ml/streaming/200408/msg00082.html">mail</a>.
Status: Todo
Task Task
Difficulty: Hard Difficulty: Easy
Urgency: Wishlist Urgency: Wishlist
Platform: any Platform: any
Description: Picture filters Description: More Picture filters
picture per picture chained filter system that also works on output streams There are several picture filters (blend, scale), but we can use more
Status: Todo Status: Todo
Task Task
...@@ -278,9 +277,11 @@ Task ...@@ -278,9 +277,11 @@ Task
Difficulty: Medium Difficulty: Medium
Urgency: Wishlist Urgency: Wishlist
Platform: any Platform: any
Description: SPU redesign Description: Subtitle work
- centralized scaling support - scaling support (mostly for Vobsub with avi/mkv)
(also look at ogt/cvd sub work) - better SSA support with postioning, colors etc.
- VobSub tracks support
- Fix subtitles dialogs
Status: Todo Status: Todo
Task Task
...@@ -291,14 +292,6 @@ Description: skins2 ...@@ -291,14 +292,6 @@ Description: skins2
Port VLC skins to Objective C++ and OSX. Also requires the intf to be a dialog handler. Port VLC skins to Objective C++ and OSX. Also requires the intf to be a dialog handler.
Status: Todo Status: Todo
Task
Difficulty: Easy
Urgency: Wishlist
Platform: Mac OS X
Description: Equalizer Graphic control
Now that VLC has an equalizer, we need a way to control it easily from the GUI.
Status: Todo
Task Task
Difficulty: Hard Difficulty: Hard
Urgency: Wishlist Urgency: Wishlist
...@@ -316,6 +309,7 @@ Urgency: Wishlist ...@@ -316,6 +309,7 @@ Urgency: Wishlist
Platform: any Platform: any
Description: Full H323 Videoconferencing Description: Full H323 Videoconferencing
VLC isn't really suited for this yet, because it introduces quite large latencies. This should be fixed before the H323 can ever come close to working in VLC. VLC isn't really suited for this yet, because it introduces quite large latencies. This should be fixed before the H323 can ever come close to working in VLC.
We also will need SIP support.
Status: Todo Status: Todo
Task Task
......
...@@ -260,7 +260,6 @@ void E_(CloseVideoQT) ( vlc_object_t *p_this ) ...@@ -260,7 +260,6 @@ void E_(CloseVideoQT) ( vlc_object_t *p_this )
vout_thread_t * p_vout = (vout_thread_t *)p_this; vout_thread_t * p_vout = (vout_thread_t *)p_this;
[p_vout->p_sys->o_window close]; [p_vout->p_sys->o_window close];
[p_vout->p_sys->o_window release];
/* Clean Up Quicktime environment */ /* Clean Up Quicktime environment */
ExitMovies(); ExitMovies();
......
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