Commit 7a34b7d8 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/dca: Make ff_dca_convert_bitstream() available to libavformat, needed for dts_probe()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 40a820d6
...@@ -36,7 +36,7 @@ const uint32_t avpriv_dca_sample_rates[16] = ...@@ -36,7 +36,7 @@ const uint32_t avpriv_dca_sample_rates[16] =
12000, 24000, 48000, 96000, 192000 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) int max_size)
{ {
uint32_t mrk; uint32_t mrk;
......
...@@ -42,7 +42,7 @@ extern av_export const uint32_t avpriv_dca_sample_rates[16]; ...@@ -42,7 +42,7 @@ extern av_export const uint32_t avpriv_dca_sample_rates[16];
/** /**
* Convert bitstream to one representation based on sync marker * 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); int max_size);
#endif /* AVCODEC_DCA_H */ #endif /* AVCODEC_DCA_H */
...@@ -106,7 +106,7 @@ static int dca_parse_params(const uint8_t *buf, int buf_size, int *duration, ...@@ -106,7 +106,7 @@ static int dca_parse_params(const uint8_t *buf, int buf_size, int *duration,
if (buf_size < 12) if (buf_size < 12)
return AVERROR_INVALIDDATA; 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; return ret;
init_get_bits(&gb, hdr, 96); init_get_bits(&gb, hdr, 96);
......
...@@ -2152,7 +2152,7 @@ static int dca_decode_frame(AVCodecContext *avctx, void *data, ...@@ -2152,7 +2152,7 @@ static int dca_decode_frame(AVCodecContext *avctx, void *data,
s->xch_present = 0; 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); DCA_MAX_FRAME_SIZE + DCA_MAX_EXSS_HEADER_SIZE);
if (s->dca_buffer_size == AVERROR_INVALIDDATA) { if (s->dca_buffer_size == AVERROR_INVALIDDATA) {
av_log(avctx, AV_LOG_ERROR, "Not a valid DCA frame\n"); av_log(avctx, AV_LOG_ERROR, "Not a valid DCA frame\n");
......
...@@ -29,8 +29,8 @@ ...@@ -29,8 +29,8 @@
#include "libavutil/version.h" #include "libavutil/version.h"
#define LIBAVCODEC_VERSION_MAJOR 55 #define LIBAVCODEC_VERSION_MAJOR 55
#define LIBAVCODEC_VERSION_MINOR 72 #define LIBAVCODEC_VERSION_MINOR 73
#define LIBAVCODEC_VERSION_MICRO 102 #define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \ LIBAVCODEC_VERSION_MINOR, \
......
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