diff options
author | Luca Abeni <lucabe72@email.it> | 2008-03-31 09:42:45 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2008-03-31 09:42:45 +0000 |
commit | e4ed1fbf913677b843e1a9a22eb441896e863a89 (patch) | |
tree | 551ee1e6fd4816e661725a7aa0186af8515cbda4 /libavformat/rtp.c | |
parent | 42ceeb5f3cefe331862f5a1e8aa48380f5629975 (diff) | |
download | ffmpeg-e4ed1fbf913677b843e1a9a22eb441896e863a89.tar.gz |
Support mp3 audio in the RTP muxer
Originally committed as revision 12643 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp.c')
-rw-r--r-- | libavformat/rtp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtp.c b/libavformat/rtp.c index 6b038c8255..8d01b97649 100644 --- a/libavformat/rtp.c +++ b/libavformat/rtp.c @@ -54,6 +54,7 @@ static const struct {12, "QCELP", CODEC_TYPE_AUDIO, CODEC_ID_QCELP, 8000, 1}, {13, "CN", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1}, {14, "MPA", CODEC_TYPE_AUDIO, CODEC_ID_MP2, 90000, -1}, + {14, "MPA", CODEC_TYPE_AUDIO, CODEC_ID_MP3, 90000, -1}, {15, "G728", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 8000, 1}, {16, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 11025, 1}, {17, "DVI4", CODEC_TYPE_AUDIO, CODEC_ID_NONE, 22050, 1}, |