From c6f1dc8e4cd967ae056698eafb891a08003c211c Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Thu, 17 Jan 2013 15:29:12 +0200 Subject: rtpdec: Move setting the parsing flags to the actual depacketizers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This gets rid of almost all the codec specific details from the generic rtpdec code. Signed-off-by: Martin Storsjö --- libavformat/rtpdec.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'libavformat/rtpdec.c') diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index 38bd333e9c..4379e6f4f1 100644 --- a/libavformat/rtpdec.c +++ b/libavformat/rtpdec.c @@ -502,18 +502,6 @@ RTPDemuxContext *ff_rtp_parse_open(AVFormatContext *s1, AVStream *st, rtp_init_statistics(&s->statistics, 0); if (st) { switch (st->codec->codec_id) { - case AV_CODEC_ID_MPEG1VIDEO: - case AV_CODEC_ID_MPEG2VIDEO: - case AV_CODEC_ID_MP2: - case AV_CODEC_ID_MP3: - case AV_CODEC_ID_MPEG4: - case AV_CODEC_ID_H263: - case AV_CODEC_ID_H264: - st->need_parsing = AVSTREAM_PARSE_FULL; - break; - case AV_CODEC_ID_VORBIS: - st->need_parsing = AVSTREAM_PARSE_HEADERS; - break; case AV_CODEC_ID_ADPCM_G722: /* According to RFC 3551, the stream clock rate is 8000 * even if the sample rate is 16000. */ -- cgit v1.2.3