Changeset 182f9a350d8d162047b7ec587a1c1658efc81cfb
- Timestamp:
- 29/03/08 10:10:35
(6 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1206781835 +0200
- git-parent:
[e19cbb78b62ce459e1ea8f683c4db1942ec16998]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1206781835 +0200
- Message:
Remove SPU type
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9a867d7 |
r182f9a3 |
|
| 60 | 60 | #define VLC_OBJECT_FILTER (-22) |
|---|
| 61 | 61 | |
|---|
| 62 | | #define VLC_OBJECT_SPU (-24) |
|---|
| | 62 | |
|---|
| 63 | 63 | |
|---|
| 64 | 64 | #define VLC_OBJECT_SD (-26) |
|---|
| r9a867d7 |
r182f9a3 |
|
| 129 | 129 | { VLC_OBJECT_OPENGL, "opengl" }, |
|---|
| 130 | 130 | { VLC_OBJECT_FILTER, "filter" }, |
|---|
| 131 | | { VLC_OBJECT_SPU, "spu" }, |
|---|
| 132 | 131 | { VLC_OBJECT_SD, "sd" }, |
|---|
| 133 | 132 | { VLC_OBJECT_XML, "xml" }, |
|---|
| re19cbb7 |
r182f9a3 |
|
| 302 | 302 | i_size = sizeof(vout_thread_t); |
|---|
| 303 | 303 | psz_type = "video output"; |
|---|
| 304 | | break; |
|---|
| 305 | | case VLC_OBJECT_SPU: |
|---|
| 306 | | i_size = sizeof(spu_t); |
|---|
| 307 | | psz_type = "subpicture"; |
|---|
| 308 | 304 | break; |
|---|
| 309 | 305 | case VLC_OBJECT_AOUT: |
|---|
| r8594365 |
r182f9a3 |
|
| 77 | 77 | { |
|---|
| 78 | 78 | int i_index; |
|---|
| 79 | | spu_t *p_spu = vlc_object_create( p_this, VLC_OBJECT_SPU ); |
|---|
| | 79 | spu_t *p_spu = vlc_custom_create( p_this, sizeof( spu_t ), |
|---|
| | 80 | VLC_OBJECT_GENERIC, "subpicture" ); |
|---|
| 80 | 81 | |
|---|
| 81 | 82 | for( i_index = 0; i_index < VOUT_MAX_SUBPICTURES; i_index++) |
|---|