Changeset 805699e002703ead105f2e8096efefe319d00c33
- 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
| r25ad0cd |
r805699e |
|
| 957 | 957 | { |
|---|
| 958 | 958 | case VLC_FOURCC( 'm', 'p','g', 'a' ): |
|---|
| | 959 | case VLC_FOURCC( 'm', 'p', '3', ' ' ): |
|---|
| 959 | 960 | p_stream->i_stream_type = |
|---|
| 960 | 961 | p_input->p_fmt->audio.i_rate >= 32000 ? 0x03 : 0x04; |
|---|
| ra78e273 |
r805699e |
|
| 963 | 963 | break; |
|---|
| 964 | 964 | case VLC_FOURCC( 'm', 'p', 'g', 'a' ): |
|---|
| | 965 | case VLC_FOURCC( 'm', 'p', '3', ' ' ): |
|---|
| 965 | 966 | id->i_payload_type = 14; |
|---|
| 966 | 967 | id->psz_enc = "MPA"; |
|---|