diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-06 21:29:36 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-06 22:28:35 +0200 |
commit | 7a34b7d80f35f3c6862b1dc30628658a6e60b599 (patch) | |
tree | f321672fea9cde57a8c26dfb826f29d8da5f3d25 /libavcodec/dca.h | |
parent | 40a820d6d8653f604414e770fd200b4868ab87ef (diff) | |
download | ffmpeg-7a34b7d80f35f3c6862b1dc30628658a6e60b599.tar.gz |
avcodec/dca: Make ff_dca_convert_bitstream() available to libavformat, needed for dts_probe()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dca.h')
-rw-r--r-- | libavcodec/dca.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dca.h b/libavcodec/dca.h index d60b28207a..70dade5cd0 100644 --- a/libavcodec/dca.h +++ b/libavcodec/dca.h @@ -42,7 +42,7 @@ extern av_export const uint32_t avpriv_dca_sample_rates[16]; /** * Convert bitstream to one representation based on sync marker */ -int ff_dca_convert_bitstream(const uint8_t *src, int src_size, uint8_t *dst, +int avpriv_dca_convert_bitstream(const uint8_t *src, int src_size, uint8_t *dst, int max_size); #endif /* AVCODEC_DCA_H */ |