Changeset 253460107b425df38ae34d3e3e401955adaa972a

Show
Ignore:
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
  • modules/gui/qt4/components/interface_widgets.cpp

    rd3fe7f2 r2534601  
    9090    } 
    9191    p_vout = p_nvout; 
    92     setMinimumSize( 1,1 ); 
     92    setMinimumSize( 0, 0 ); 
    9393    return (void*)winId(); 
    9494} 
  • src/input/es_out.c

    r496a542 r2534601  
    13041304                } 
    13051305            } 
     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            } 
    13061314            return VLC_SUCCESS; 
    13071315