Changeset 25399ee4426dd72a97164805cdfbdc4d30a2f384

Show
Ignore:
Timestamp:
03/12/07 15:04:41 (1 year ago)
Author:
Jean-Paul Saman <jpsaman@videolan.org>
git-committer:
Jean-Paul Saman <jpsaman@videolan.org> 1196690681 +0000
git-parent:

[17e8348c0a896f8b1370a458a6c5ccf3315dd942]

git-author:
Jean-Paul Saman <jpsaman@videolan.org> 1196690681 +0000
Message:

Fix snapshot functionality in video_output/fb.c

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/video_output/fb.c

    r5369030 r25399ee  
    5252static int  Manage    ( vout_thread_t * ); 
    5353static void Display   ( vout_thread_t *, picture_t * ); 
     54static int  Control   ( vout_thread_t *, int, va_list ); 
    5455 
    5556static int  OpenDisplay    ( vout_thread_t * ); 
     
    172173    p_vout->pf_render = NULL; 
    173174    p_vout->pf_display = Display; 
     175    p_vout->pf_control = Control; 
    174176 
    175177    /* Set tty and fb devices */ 
     
    503505 
    504506/***************************************************************************** 
     507 * Control: control facility for the vout 
     508 *****************************************************************************/ 
     509static int Control( vout_thread_t *p_vout, int i_query, va_list args ) 
     510{ 
     511    switch( i_query ) 
     512    { 
     513       default: 
     514            return vout_vaControlDefault( p_vout, i_query, args ); 
     515    } 
     516} 
     517 
     518/***************************************************************************** 
    505519 * Manage: handle FB events 
    506520 *****************************************************************************