Browse Source

Add support for mp3 over RTP in rtpdec.c

Originally committed as revision 20916 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Luca Abeni 16 years ago
parent
commit
76faff6ef2
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavformat/rtpdec.c

+ 1
- 0
libavformat/rtpdec.c View File

@@ -486,6 +486,7 @@ int rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt,
// at this point, the RTP header has been stripped; This is ASSUMING that there is only 1 CSRC, which in't wise.
switch(st->codec->codec_id) {
case CODEC_ID_MP2:
case CODEC_ID_MP3:
/* better than nothing: skip mpeg audio RTP header */
if (len <= 4)
return -1;


Loading…
Cancel
Save