Changeset 25399ee4426dd72a97164805cdfbdc4d30a2f384
- 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
| r5369030 |
r25399ee |
|
| 52 | 52 | static int Manage ( vout_thread_t * ); |
|---|
| 53 | 53 | static void Display ( vout_thread_t *, picture_t * ); |
|---|
| | 54 | static int Control ( vout_thread_t *, int, va_list ); |
|---|
| 54 | 55 | |
|---|
| 55 | 56 | static int OpenDisplay ( vout_thread_t * ); |
|---|
| … | … | |
| 172 | 173 | p_vout->pf_render = NULL; |
|---|
| 173 | 174 | p_vout->pf_display = Display; |
|---|
| | 175 | p_vout->pf_control = Control; |
|---|
| 174 | 176 | |
|---|
| 175 | 177 | /* Set tty and fb devices */ |
|---|
| … | … | |
| 503 | 505 | |
|---|
| 504 | 506 | /***************************************************************************** |
|---|
| | 507 | * Control: control facility for the vout |
|---|
| | 508 | *****************************************************************************/ |
|---|
| | 509 | static 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 | /***************************************************************************** |
|---|
| 505 | 519 | * Manage: handle FB events |
|---|
| 506 | 520 | ***************************************************************************** |
|---|