Changeset 5e2c9b528c05f3846a3eb73d659986d40f39ebf1

Show
Ignore:
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
  • modules/demux/ts.c

    r19738f6 r5e2c9b5  
    24352435 
    24362436                vlc_meta_SetTitle( p_meta, str2 ); 
    2437                 vlc_meta_SetProvider( p_meta, str1 ); 
     2437                vlc_meta_SetPublisher( p_meta, str1 ); 
    24382438                if( pD->i_service_type >= 0x01 && pD->i_service_type <= 0x10 ) 
    24392439                    vlc_meta_Add( p_meta, "Type", psz_type[pD->i_service_type] ); 
  • src/input/es_out.c

    r19738f6 r5e2c9b5  
    575575 
    576576    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; 
    578578    if( p_meta->psz_nowplaying ) psz_now_playing = p_meta->psz_nowplaying; 
    579579