Commit b27ddffb authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit 'dc70c194'

* commit 'dc70c194':
  lavc: Drop deprecated request_channels related functions
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents 144fb068 dc70c194
...@@ -84,14 +84,6 @@ get_next: ...@@ -84,14 +84,6 @@ get_next:
avctx->sample_rate = s->sample_rate; avctx->sample_rate = s->sample_rate;
/* (E-)AC-3: allow downmixing to stereo or mono */ /* (E-)AC-3: allow downmixing to stereo or mono */
#if FF_API_REQUEST_CHANNELS
FF_DISABLE_DEPRECATION_WARNINGS
if (avctx->request_channels == 1)
avctx->request_channel_layout = AV_CH_LAYOUT_MONO;
else if (avctx->request_channels == 2)
avctx->request_channel_layout = AV_CH_LAYOUT_STEREO;
FF_ENABLE_DEPRECATION_WARNINGS
#endif
if (s->channels > 1 && if (s->channels > 1 &&
avctx->request_channel_layout == AV_CH_LAYOUT_MONO) { avctx->request_channel_layout == AV_CH_LAYOUT_MONO) {
avctx->channels = 1; avctx->channels = 1;
......
...@@ -208,14 +208,6 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx) ...@@ -208,14 +208,6 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx)
avctx->sample_fmt = AV_SAMPLE_FMT_FLTP; avctx->sample_fmt = AV_SAMPLE_FMT_FLTP;
/* allow downmixing to stereo or mono */ /* allow downmixing to stereo or mono */
#if FF_API_REQUEST_CHANNELS
FF_DISABLE_DEPRECATION_WARNINGS
if (avctx->request_channels == 1)
avctx->request_channel_layout = AV_CH_LAYOUT_MONO;
else if (avctx->request_channels == 2)
avctx->request_channel_layout = AV_CH_LAYOUT_STEREO;
FF_ENABLE_DEPRECATION_WARNINGS
#endif
if (avctx->channels > 1 && if (avctx->channels > 1 &&
avctx->request_channel_layout == AV_CH_LAYOUT_MONO) avctx->request_channel_layout == AV_CH_LAYOUT_MONO)
avctx->channels = 1; avctx->channels = 1;
......
...@@ -2305,16 +2305,6 @@ typedef struct AVCodecContext { ...@@ -2305,16 +2305,6 @@ typedef struct AVCodecContext {
*/ */
int cutoff; int cutoff;
#if FF_API_REQUEST_CHANNELS
/**
* Decoder should decode to this many channels if it can (0 for default)
* - encoding: unused
* - decoding: Set by user.
* @deprecated Deprecated in favor of request_channel_layout.
*/
attribute_deprecated int request_channels;
#endif
/** /**
* Audio channel layout. * Audio channel layout.
* - encoding: set by user. * - encoding: set by user.
......
...@@ -1669,17 +1669,7 @@ static int dca_decode_frame(AVCodecContext *avctx, void *data, ...@@ -1669,17 +1669,7 @@ static int dca_decode_frame(AVCodecContext *avctx, void *data,
/* If we have XXCH then the channel layout is managed differently */ /* If we have XXCH then the channel layout is managed differently */
/* note that XLL will also have another way to do things */ /* note that XLL will also have another way to do things */
#if FF_API_REQUEST_CHANNELS
FF_DISABLE_DEPRECATION_WARNINGS
if (!(s->core_ext_mask & DCA_EXT_XXCH)
|| (s->core_ext_mask & DCA_EXT_XXCH && avctx->request_channels > 0
&& avctx->request_channels
< num_core_channels + !!s->lfe + s->xxch_chset_nch[0]))
{
FF_ENABLE_DEPRECATION_WARNINGS
#else
if (!(s->core_ext_mask & DCA_EXT_XXCH)) { if (!(s->core_ext_mask & DCA_EXT_XXCH)) {
#endif
/* xxx should also do MA extensions */ /* xxx should also do MA extensions */
if (s->amode < 16) { if (s->amode < 16) {
avctx->channel_layout = ff_dca_core_channel_layout[s->amode]; avctx->channel_layout = ff_dca_core_channel_layout[s->amode];
...@@ -1694,15 +1684,7 @@ FF_ENABLE_DEPRECATION_WARNINGS ...@@ -1694,15 +1684,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
s->xch_disable = 1; s->xch_disable = 1;
} }
#if FF_API_REQUEST_CHANNELS
FF_DISABLE_DEPRECATION_WARNINGS
if (s->xch_present && !s->xch_disable &&
(!avctx->request_channels ||
avctx->request_channels > num_core_channels + !!s->lfe)) {
FF_ENABLE_DEPRECATION_WARNINGS
#else
if (s->xch_present && !s->xch_disable) { if (s->xch_present && !s->xch_disable) {
#endif
if (avctx->channel_layout & AV_CH_BACK_CENTER) { if (avctx->channel_layout & AV_CH_BACK_CENTER) {
avpriv_request_sample(avctx, "XCh with Back center channel"); avpriv_request_sample(avctx, "XCh with Back center channel");
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
...@@ -1757,19 +1739,6 @@ FF_ENABLE_DEPRECATION_WARNINGS ...@@ -1757,19 +1739,6 @@ FF_ENABLE_DEPRECATION_WARNINGS
/* we only get here if an XXCH channel set can be added to the mix */ /* we only get here if an XXCH channel set can be added to the mix */
channel_mask = s->xxch_core_spkmask; channel_mask = s->xxch_core_spkmask;
#if FF_API_REQUEST_CHANNELS
FF_DISABLE_DEPRECATION_WARNINGS
if (avctx->request_channels > 0
&& avctx->request_channels < s->prim_channels) {
channels = num_core_channels + !!s->lfe;
for (i = 0; i < s->xxch_chset && channels + s->xxch_chset_nch[i]
<= avctx->request_channels; i++) {
channels += s->xxch_chset_nch[i];
channel_mask |= s->xxch_spk_masks[i];
}
FF_ENABLE_DEPRECATION_WARNINGS
} else
#endif
{ {
channels = s->prim_channels + !!s->lfe; channels = s->prim_channels + !!s->lfe;
for (i = 0; i < s->xxch_chset; i++) { for (i = 0; i < s->xxch_chset; i++) {
...@@ -2012,12 +1981,6 @@ static av_cold int dca_decode_init(AVCodecContext *avctx) ...@@ -2012,12 +1981,6 @@ static av_cold int dca_decode_init(AVCodecContext *avctx)
avctx->sample_fmt = AV_SAMPLE_FMT_FLTP; avctx->sample_fmt = AV_SAMPLE_FMT_FLTP;
/* allow downmixing to stereo */ /* allow downmixing to stereo */
#if FF_API_REQUEST_CHANNELS
FF_DISABLE_DEPRECATION_WARNINGS
if (avctx->request_channels == 2)
avctx->request_channel_layout = AV_CH_LAYOUT_STEREO;
FF_ENABLE_DEPRECATION_WARNINGS
#endif
if (avctx->channels > 2 && if (avctx->channels > 2 &&
avctx->request_channel_layout == AV_CH_LAYOUT_STEREO) avctx->request_channel_layout == AV_CH_LAYOUT_STEREO)
avctx->channels = 2; avctx->channels = 2;
......
...@@ -357,15 +357,6 @@ static int mlp_parse(AVCodecParserContext *s, ...@@ -357,15 +357,6 @@ static int mlp_parse(AVCodecParserContext *s,
if(!avctx->channels || !avctx->channel_layout) { if(!avctx->channels || !avctx->channel_layout) {
if (mh.stream_type == 0xbb) { if (mh.stream_type == 0xbb) {
/* MLP stream */ /* MLP stream */
#if FF_API_REQUEST_CHANNELS
FF_DISABLE_DEPRECATION_WARNINGS
if (avctx->request_channels > 0 && avctx->request_channels <= 2 &&
mh.num_substreams > 1) {
avctx->channels = 2;
avctx->channel_layout = AV_CH_LAYOUT_STEREO;
FF_ENABLE_DEPRECATION_WARNINGS
} else
#endif
if (avctx->request_channel_layout && if (avctx->request_channel_layout &&
(avctx->request_channel_layout & AV_CH_LAYOUT_STEREO) == (avctx->request_channel_layout & AV_CH_LAYOUT_STEREO) ==
avctx->request_channel_layout && avctx->request_channel_layout &&
...@@ -378,20 +369,7 @@ FF_ENABLE_DEPRECATION_WARNINGS ...@@ -378,20 +369,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
} }
} else { /* mh.stream_type == 0xba */ } else { /* mh.stream_type == 0xba */
/* TrueHD stream */ /* TrueHD stream */
#if FF_API_REQUEST_CHANNELS if (avctx->request_channel_layout &&
FF_DISABLE_DEPRECATION_WARNINGS
if (avctx->request_channels > 0 && avctx->request_channels <= 2 &&
mh.num_substreams > 1) {
avctx->channels = 2;
avctx->channel_layout = AV_CH_LAYOUT_STEREO;
} else if (avctx->request_channels > 0 &&
avctx->request_channels <= mh.channels_thd_stream1) {
avctx->channels = mh.channels_thd_stream1;
avctx->channel_layout = mh.channel_layout_thd_stream1;
FF_ENABLE_DEPRECATION_WARNINGS
} else
#endif
if (avctx->request_channel_layout &&
(avctx->request_channel_layout & AV_CH_LAYOUT_STEREO) == (avctx->request_channel_layout & AV_CH_LAYOUT_STEREO) ==
avctx->request_channel_layout && avctx->request_channel_layout &&
mh.num_substreams > 1) { mh.num_substreams > 1) {
......
...@@ -533,19 +533,6 @@ static int read_restart_header(MLPDecodeContext *m, GetBitContext *gbp, ...@@ -533,19 +533,6 @@ static int read_restart_header(MLPDecodeContext *m, GetBitContext *gbp,
s->max_channel = max_channel; s->max_channel = max_channel;
s->max_matrix_channel = max_matrix_channel; s->max_matrix_channel = max_matrix_channel;
#if FF_API_REQUEST_CHANNELS
FF_DISABLE_DEPRECATION_WARNINGS
if (m->avctx->request_channels > 0 &&
m->avctx->request_channels <= s->max_channel + 1 &&
m->max_decoded_substream > substr) {
av_log(m->avctx, AV_LOG_DEBUG,
"Extracting %d-channel downmix from substream %d. "
"Further substreams will be skipped.\n",
s->max_channel + 1, substr);
m->max_decoded_substream = substr;
FF_ENABLE_DEPRECATION_WARNINGS
} else
#endif
if (m->avctx->request_channel_layout && (s->ch_layout & m->avctx->request_channel_layout) == if (m->avctx->request_channel_layout && (s->ch_layout & m->avctx->request_channel_layout) ==
m->avctx->request_channel_layout && m->max_decoded_substream > substr) { m->avctx->request_channel_layout && m->max_decoded_substream > substr) {
av_log(m->avctx, AV_LOG_DEBUG, av_log(m->avctx, AV_LOG_DEBUG,
......
...@@ -411,9 +411,6 @@ static const AVOption avcodec_options[] = { ...@@ -411,9 +411,6 @@ static const AVOption avcodec_options[] = {
{"min_prediction_order", NULL, OFFSET(min_prediction_order), AV_OPT_TYPE_INT, {.i64 = -1 }, INT_MIN, INT_MAX, A|E}, {"min_prediction_order", NULL, OFFSET(min_prediction_order), AV_OPT_TYPE_INT, {.i64 = -1 }, INT_MIN, INT_MAX, A|E},
{"max_prediction_order", NULL, OFFSET(max_prediction_order), AV_OPT_TYPE_INT, {.i64 = -1 }, INT_MIN, INT_MAX, A|E}, {"max_prediction_order", NULL, OFFSET(max_prediction_order), AV_OPT_TYPE_INT, {.i64 = -1 }, INT_MIN, INT_MAX, A|E},
{"timecode_frame_start", "GOP timecode frame start number, in non-drop-frame format", OFFSET(timecode_frame_start), AV_OPT_TYPE_INT64, {.i64 = -1 }, -1, INT64_MAX, V|E}, {"timecode_frame_start", "GOP timecode frame start number, in non-drop-frame format", OFFSET(timecode_frame_start), AV_OPT_TYPE_INT64, {.i64 = -1 }, -1, INT64_MAX, V|E},
#if FF_API_REQUEST_CHANNELS
{"request_channels", "set desired number of audio channels", OFFSET(request_channels), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, 0, INT_MAX, A|D},
#endif
{"bits_per_raw_sample", NULL, OFFSET(bits_per_raw_sample), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX}, {"bits_per_raw_sample", NULL, OFFSET(bits_per_raw_sample), AV_OPT_TYPE_INT, {.i64 = DEFAULT }, INT_MIN, INT_MAX},
{"channel_layout", NULL, OFFSET(channel_layout), AV_OPT_TYPE_INT64, {.i64 = DEFAULT }, 0, INT64_MAX, A|E|D, "channel_layout"}, {"channel_layout", NULL, OFFSET(channel_layout), AV_OPT_TYPE_INT64, {.i64 = DEFAULT }, 0, INT64_MAX, A|E|D, "channel_layout"},
{"request_channel_layout", NULL, OFFSET(request_channel_layout), AV_OPT_TYPE_INT64, {.i64 = DEFAULT }, 0, INT64_MAX, A|D, "request_channel_layout"}, {"request_channel_layout", NULL, OFFSET(request_channel_layout), AV_OPT_TYPE_INT64, {.i64 = DEFAULT }, 0, INT64_MAX, A|D, "request_channel_layout"},
......
...@@ -55,9 +55,6 @@ ...@@ -55,9 +55,6 @@
#ifndef FF_API_VIMA_DECODER #ifndef FF_API_VIMA_DECODER
#define FF_API_VIMA_DECODER (LIBAVCODEC_VERSION_MAJOR < 57) #define FF_API_VIMA_DECODER (LIBAVCODEC_VERSION_MAJOR < 57)
#endif #endif
#ifndef FF_API_REQUEST_CHANNELS
#define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 57)
#endif
#ifndef FF_API_OLD_DECODE_AUDIO #ifndef FF_API_OLD_DECODE_AUDIO
#define FF_API_OLD_DECODE_AUDIO (LIBAVCODEC_VERSION_MAJOR < 57) #define FF_API_OLD_DECODE_AUDIO (LIBAVCODEC_VERSION_MAJOR < 57)
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment