Changeset 253460107b425df38ae34d3e3e401955adaa972a
- Timestamp:
- 23/12/06 12:53:20
(2 years ago)
- Author:
- Clément Stenac <zorglub@videolan.org>
- git-committer:
- Clément Stenac <zorglub@videolan.org> 1166874800 +0000
- git-parent:
[514e325d50ea0f061dbcd7779a722bf50f95f50d]
- git-author:
- Clément Stenac <zorglub@videolan.org> 1166874800 +0000
- Message:
* Ensure garbage collector is called when disabling a video track (Closes:#935)
* Possible (not probable) fix for 934. Can't fix as building vlc on win32 is almost impossible
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd3fe7f2 |
r2534601 |
|
| 90 | 90 | } |
|---|
| 91 | 91 | p_vout = p_nvout; |
|---|
| 92 | | setMinimumSize( 1,1 ); |
|---|
| | 92 | setMinimumSize( 0, 0 ); |
|---|
| 93 | 93 | return (void*)winId(); |
|---|
| 94 | 94 | } |
|---|
| r496a542 |
r2534601 |
|
| 1304 | 1304 | } |
|---|
| 1305 | 1305 | } |
|---|
| | 1306 | { |
|---|
| | 1307 | playlist_t * p_playlist = pl_Yield( p_sys->p_input ); |
|---|
| | 1308 | PL_LOCK; |
|---|
| | 1309 | p_playlist->gc_date = mdate(); |
|---|
| | 1310 | vlc_cond_signal( &p_playlist->object_wait ); |
|---|
| | 1311 | PL_UNLOCK; |
|---|
| | 1312 | pl_Release( p_playlist ); |
|---|
| | 1313 | } |
|---|
| 1306 | 1314 | return VLC_SUCCESS; |
|---|
| 1307 | 1315 | |
|---|