From c14fe6bc99eba55c6e52b3f3c606bb458f8a0a8e Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 17 Jul 2011 07:45:33 +0200 Subject: lavf,lavd: remove all usage of AVFormatParameters from demuxers. AVFormatParameters are converted into corresponding private options in av_open_input_file/stream() compat wrappers, so accessing them from demuxers is redundant. --- libavdevice/oss_audio.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'libavdevice/oss_audio.c') diff --git a/libavdevice/oss_audio.c b/libavdevice/oss_audio.c index 6e25288dba..6df7f34d7e 100644 --- a/libavdevice/oss_audio.c +++ b/libavdevice/oss_audio.c @@ -209,13 +209,6 @@ static int audio_read_header(AVFormatContext *s1, AVFormatParameters *ap) AVStream *st; int ret; -#if FF_API_FORMAT_PARAMETERS - if (ap->sample_rate > 0) - s->sample_rate = ap->sample_rate; - if (ap->channels > 0) - s->channels = ap->channels; -#endif - st = av_new_stream(s1, 0); if (!st) { return AVERROR(ENOMEM); -- cgit v1.2.3