mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-23 15:53:08 +00:00
avcodec/dca: Make ff_dca_convert_bitstream() available to libavformat, needed for dts_probe()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
40a820d6d8
commit
7a34b7d80f
@ -36,7 +36,7 @@ const uint32_t avpriv_dca_sample_rates[16] =
|
||||
12000, 24000, 48000, 96000, 192000
|
||||
};
|
||||
|
||||
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)
|
||||
{
|
||||
uint32_t mrk;
|
||||
|
@ -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 */
|
||||
|
@ -106,7 +106,7 @@ static int dca_parse_params(const uint8_t *buf, int buf_size, int *duration,
|
||||
if (buf_size < 12)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
if ((ret = ff_dca_convert_bitstream(buf, 12, hdr, 12)) < 0)
|
||||
if ((ret = avpriv_dca_convert_bitstream(buf, 12, hdr, 12)) < 0)
|
||||
return ret;
|
||||
|
||||
init_get_bits(&gb, hdr, 96);
|
||||
|
@ -2152,7 +2152,7 @@ static int dca_decode_frame(AVCodecContext *avctx, void *data,
|
||||
|
||||
s->xch_present = 0;
|
||||
|
||||
s->dca_buffer_size = ff_dca_convert_bitstream(buf, buf_size, s->dca_buffer,
|
||||
s->dca_buffer_size = avpriv_dca_convert_bitstream(buf, buf_size, s->dca_buffer,
|
||||
DCA_MAX_FRAME_SIZE + DCA_MAX_EXSS_HEADER_SIZE);
|
||||
if (s->dca_buffer_size == AVERROR_INVALIDDATA) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Not a valid DCA frame\n");
|
||||
|
@ -29,8 +29,8 @@
|
||||
#include "libavutil/version.h"
|
||||
|
||||
#define LIBAVCODEC_VERSION_MAJOR 55
|
||||
#define LIBAVCODEC_VERSION_MINOR 72
|
||||
#define LIBAVCODEC_VERSION_MICRO 102
|
||||
#define LIBAVCODEC_VERSION_MINOR 73
|
||||
#define LIBAVCODEC_VERSION_MICRO 100
|
||||
|
||||
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
||||
LIBAVCODEC_VERSION_MINOR, \
|
||||
|
Loading…
Reference in New Issue
Block a user