Changeset 95144fb3cd654d30b35668e178c3c2ea844bd369
- Timestamp:
- 07/30/03 00:20:53
(5 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1059517253 +0000
- git-parent:
[7528b8435b27ee502fb2803718e7fc28de8650cb]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1059517253 +0000
- Message:
* src/video_output/video_output.c: fixed potential segfault.
* configure.ac: don't bail out if matroska headers are not found.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r42b0d32 |
r95144fb |
|
| 1 | 1 | dnl Autoconf settings for vlc |
|---|
| 2 | | dnl $Id: configure.ac,v 1.46 2003/07/29 17:42:58 gbazin Exp $ |
|---|
| | 2 | dnl $Id: configure.ac,v 1.47 2003/07/29 22:20:53 gbazin Exp $ |
|---|
| 3 | 3 | |
|---|
| 4 | 4 | AC_INIT(vlc,0.6.1) |
|---|
| … | … | |
| 1419 | 1419 | AX_ADD_LDFLAGS([mkv],[-lmatroska -lebml]) |
|---|
| 1420 | 1420 | ]) |
|---|
| 1421 | | ],[ |
|---|
| 1422 | | AC_MSG_ERROR([libebml or libmatroska include files not found]) |
|---|
| 1423 | 1421 | ]) |
|---|
| 1424 | 1422 | CPPFLAGS="${CPPFLAGS_save}" |
|---|
| r4684a91 |
r95144fb |
|
| 6 | 6 | ***************************************************************************** |
|---|
| 7 | 7 | * Copyright (C) 2000-2001 VideoLAN |
|---|
| 8 | | * $Id: video_output.c,v 1.230 2003/07/23 22:01:25 gbazin Exp $ |
|---|
| | 8 | * $Id: video_output.c,v 1.231 2003/07/29 22:20:53 gbazin Exp $ |
|---|
| 9 | 9 | * |
|---|
| 10 | 10 | * Authors: Vincent Seguin <seguin@via.ecp.fr> |
|---|
| … | … | |
| 395 | 395 | return NULL; |
|---|
| 396 | 396 | } |
|---|
| | 397 | |
|---|
| 397 | 398 | p_vout->p_text_renderer_module = module_Need( p_vout, "text renderer", |
|---|
| 398 | 399 | NULL ); |
|---|
| … | … | |
| 402 | 403 | p_vout->pf_add_string = NULL; |
|---|
| 403 | 404 | } |
|---|
| | 405 | |
|---|
| 404 | 406 | /* Create a few object variables for interface interaction */ |
|---|
| 405 | 407 | var_Create( p_vout, "fullscreen", VLC_VAR_BOOL ); |
|---|
| … | … | |
| 1049 | 1051 | } |
|---|
| 1050 | 1052 | |
|---|
| 1051 | | module_Unneed( p_vout, p_vout->p_text_renderer_module ); |
|---|
| | 1053 | if( p_vout->p_text_renderer_module ) |
|---|
| | 1054 | module_Unneed( p_vout, p_vout->p_text_renderer_module ); |
|---|
| 1052 | 1055 | |
|---|
| 1053 | 1056 | /* Destroy translation tables */ |
|---|