Changeset 5e2c9b528c05f3846a3eb73d659986d40f39ebf1
- Timestamp:
- 28/06/06 16:24:22
(2 years ago)
- Author:
- Clément Stenac <zorglub@videolan.org>
- git-committer:
- Clément Stenac <zorglub@videolan.org> 1151504662 +0000
- git-parent:
[19738f6a319be6a3ec5e869b81256554d808be98]
- git-author:
- Clément Stenac <zorglub@videolan.org> 1151504662 +0000
- Message:
Gra. Fix most of TS meta
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r19738f6 |
r5e2c9b5 |
|
| 2435 | 2435 | |
|---|
| 2436 | 2436 | vlc_meta_SetTitle( p_meta, str2 ); |
|---|
| 2437 | | vlc_meta_SetProvider( p_meta, str1 ); |
|---|
| | 2437 | vlc_meta_SetPublisher( p_meta, str1 ); |
|---|
| 2438 | 2438 | if( pD->i_service_type >= 0x01 && pD->i_service_type <= 0x10 ) |
|---|
| 2439 | 2439 | vlc_meta_Add( p_meta, "Type", psz_type[pD->i_service_type] ); |
|---|
| r19738f6 |
r5e2c9b5 |
|
| 575 | 575 | |
|---|
| 576 | 576 | if( p_meta->psz_title ) psz_title = p_meta->psz_title; |
|---|
| 577 | | if( p_meta->psz_provider) psz_provider = p_meta->psz_provider; |
|---|
| | 577 | if( p_meta->psz_provider) psz_provider = p_meta->psz_publisher; |
|---|
| 578 | 578 | if( p_meta->psz_nowplaying ) psz_now_playing = p_meta->psz_nowplaying; |
|---|
| 579 | 579 | |
|---|