Changeset 664f12538bc4d99f02f752712add11b57c4df4f0
- Timestamp:
- 30/07/06 14:22:00
(2 years ago)
- Author:
- Cyril Deguet <asmax@videolan.org>
- git-committer:
- Cyril Deguet <asmax@videolan.org> 1154262120 +0000
- git-parent:
[a3cceda1c91321de1090d0906a991f8e870bac69]
- git-author:
- Cyril Deguet <asmax@videolan.org> 1154262120 +0000
- Message:
* fixed galaktos plugin which was broken for a very long time
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r50d9c2c |
r664f125 |
|
| 209 | 209 | vlc_object_attach( p_thread->p_opengl, p_this ); |
|---|
| 210 | 210 | |
|---|
| | 211 | /* Initialize vout parameters */ |
|---|
| | 212 | vout_InitFormat( &p_thread->p_opengl->fmt_in, |
|---|
| | 213 | VLC_FOURCC('R','V','3','2'), |
|---|
| | 214 | p_thread->i_width, p_thread->i_height, 1 ); |
|---|
| 211 | 215 | p_thread->p_opengl->i_window_width = p_thread->i_width; |
|---|
| 212 | 216 | p_thread->p_opengl->i_window_height = p_thread->i_height; |
|---|
| … | … | |
| 215 | 219 | p_thread->p_opengl->render.i_aspect = VOUT_ASPECT_FACTOR; |
|---|
| 216 | 220 | p_thread->p_opengl->b_scale = VLC_TRUE; |
|---|
| | 221 | p_thread->p_opengl->b_fullscreen = VLC_FALSE; |
|---|
| | 222 | p_thread->p_opengl->i_alignment = 0; |
|---|
| | 223 | p_thread->p_opengl->fmt_in.i_sar_num = 1; |
|---|
| | 224 | p_thread->p_opengl->fmt_in.i_sar_den = 1; |
|---|
| | 225 | p_thread->p_opengl->fmt_render = p_thread->p_opengl->fmt_in; |
|---|
| 217 | 226 | |
|---|
| 218 | 227 | p_thread->p_module = |
|---|