diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-28 11:11:00 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-28 11:18:23 +0100 |
commit | b1064dd783b25b80ec0790876877bc886c2ec449 (patch) | |
tree | 23481a59a22165e21b6926bc6d096b0a47b1cd50 /libavcodec/dca.h | |
parent | 7609d42d0f4682ccccbebe0c70613af189134a33 (diff) | |
parent | 1db6a080bddd14fed6b29140ecd2e21e42b1c022 (diff) | |
download | ffmpeg-b1064dd783b25b80ec0790876877bc886c2ec449.tar.gz |
Merge commit '1db6a080bddd14fed6b29140ecd2e21e42b1c022'
* commit '1db6a080bddd14fed6b29140ecd2e21e42b1c022':
dca: Move ff_dca_convert_bitstream() to the DCA common code
vdpau: wrap codec specific functions in appropiate #ifs
Conflicts:
libavcodec/Makefile
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dca.h')
-rw-r--r-- | libavcodec/dca.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/dca.h b/libavcodec/dca.h index 3da93aa4d4..d60b28207a 100644 --- a/libavcodec/dca.h +++ b/libavcodec/dca.h @@ -39,4 +39,10 @@ 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 max_size); + #endif /* AVCODEC_DCA_H */ |