summaryrefslogtreecommitdiff
path: root/libavcodec/mlp_parser.h
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2017-04-26 11:08:17 -0400
committerVittorio Giovara <vittorio.giovara@gmail.com>2017-04-27 14:19:54 -0400
commit970c76f32283bddf3a5afd24fe52db7a96186244 (patch)
tree8cb1e90fd6e480ef48cfd8ed89977b21a8ed04ad /libavcodec/mlp_parser.h
parentdd3aa85b68c017c419acb0c39ff6aa890ce89e87 (diff)
mlp_parser: Drop in-parser downmix functionality
request_channel_layout is a decoder option and it makes no sense to have it in a parser. This feature was needed in the past when the decoder was allowed to reuse the avctx from the demuxer. Nowadays the decoder receives only the parameters from it, already containing the real channel layout (and the correct request_channel_layout option). After initialization the decoder overwrites the channel layout with the downmixed one that is actually output, so there is no need to preserve this functionality in the parser. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavcodec/mlp_parser.h')
-rw-r--r--libavcodec/mlp_parser.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/mlp_parser.h b/libavcodec/mlp_parser.h
index 946f4d240c..871b96db20 100644
--- a/libavcodec/mlp_parser.h
+++ b/libavcodec/mlp_parser.h
@@ -63,6 +63,4 @@ typedef struct MLPHeaderInfo
int ff_mlp_read_major_sync(void *log, MLPHeaderInfo *mh, BitstreamContext *bc);
-int ff_mlp_channel_layout_subset(uint64_t channel_layout, uint64_t mask);
-
#endif /* AVCODEC_MLP_PARSER_H */