Changeset 0b14c73d42ed99afc9d4234c8399315aab2c45ae
- Timestamp:
- 05/28/08 16:07:45
(3 months ago)
- Author:
- Antoine Cellerier <dionoea@videolan.org>
- git-committer:
- Antoine Cellerier <dionoea@videolan.org> 1211983665 +0200
- git-parent:
[8c140b9e37ab05d0f766a133c34f897e0a3fed92]
- git-author:
- Antoine Cellerier <dionoea@videolan.org> 1211983454 +0200
- Message:
Enforce the --vbi-position option. Don't crop letters.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5e15258 |
r0b14c73 |
|
| 345 | 345 | p_spu->p_region->i_x = 0; |
|---|
| 346 | 346 | p_spu->p_region->i_y = 0; |
|---|
| 347 | | p_spu->p_region->i_align = SUBPICTURE_ALIGN_BOTTOM; |
|---|
| | 347 | p_spu->p_region->i_align = p_sys->i_align; |
|---|
| 348 | 348 | |
|---|
| 349 | 349 | /* Normal text subs, easy markup */ |
|---|
| … | … | |
| 382 | 382 | p_spu->p_region->psz_text = strdup( &p_text[8] ); |
|---|
| 383 | 383 | |
|---|
| 384 | | p_spu->p_region->fmt.i_height = p_spu->p_region->fmt.i_visible_height = p_page.rows + 1; |
|---|
| 385 | 384 | #ifdef ZVBI_DEBUG |
|---|
| 386 | 385 | msg_Info( p_dec, "page %x-%x(%d)\n%s", p_page.pgno, p_page.subno, i_total, p_text ); |
|---|