Changeset 805699e002703ead105f2e8096efefe319d00c33

Show
Ignore:
Timestamp:
02/28/08 19:54:58 (6 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1204224898 +0000
git-parent:

[8b13b9056db8e421b06c8fccd6c537c0e22e5ba1]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1204224898 +0000
Message:

Accept MP3 as an alternative to MPGA for RTP and TS.

Someone please double check that this is not bogus!

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/mux/mpeg/ts.c

    r25ad0cd r805699e  
    957957            { 
    958958                case VLC_FOURCC( 'm', 'p','g', 'a' ): 
     959                case VLC_FOURCC( 'm', 'p', '3', ' ' ): 
    959960                    p_stream->i_stream_type = 
    960961                        p_input->p_fmt->audio.i_rate >= 32000 ? 0x03 : 0x04; 
  • modules/stream_out/rtp.c

    ra78e273 r805699e  
    963963            break; 
    964964        case VLC_FOURCC( 'm', 'p', 'g', 'a' ): 
     965        case VLC_FOURCC( 'm', 'p', '3', ' ' ): 
    965966            id->i_payload_type = 14; 
    966967            id->psz_enc = "MPA";