Browse Source

ffplay: remove now unnecessary request_channels, we set it now with options

tags/n0.9
Marton Balint 14 years ago
parent
commit
1e7f7dc2d1
1 changed files with 0 additions and 9 deletions
  1. +0
    -9
      ffplay.c

+ 0
- 9
ffplay.c View File

@@ -2160,15 +2160,6 @@ static int stream_component_open(VideoState *is, int stream_index)

opts = filter_codec_opts(codec_opts, avctx->codec_id, ic, ic->streams[stream_index]);

/* prepare audio output */
if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
if (avctx->channels > 0) {
avctx->request_channels = FFMIN(2, avctx->channels);
} else {
avctx->request_channels = 2;
}
}

codec = avcodec_find_decoder(avctx->codec_id);
switch(avctx->codec_type){
case AVMEDIA_TYPE_AUDIO : if(audio_codec_name ) codec= avcodec_find_decoder_by_name( audio_codec_name); break;


Loading…
Cancel
Save