mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-01-06 06:05:32 +01:00
Add avcodec_decode_audio4().
Deprecate avcodec_decode_audio3(). Implement audio support in avcodec_default_get_buffer(). Implement the new audio decoder API in all audio decoders.
This commit is contained in:
@@ -31,12 +31,15 @@
|
||||
|
||||
typedef struct InternalBuffer {
|
||||
int last_pic_num;
|
||||
uint8_t *base[4];
|
||||
uint8_t *data[4];
|
||||
int linesize[4];
|
||||
uint8_t *base[AV_NUM_DATA_POINTERS];
|
||||
uint8_t *data[AV_NUM_DATA_POINTERS];
|
||||
int linesize[AV_NUM_DATA_POINTERS];
|
||||
int width;
|
||||
int height;
|
||||
enum PixelFormat pix_fmt;
|
||||
uint8_t **extended_data;
|
||||
int audio_data_size;
|
||||
int nb_channels;
|
||||
} InternalBuffer;
|
||||
|
||||
typedef struct AVCodecInternal {
|
||||
|
||||
Reference in New Issue
Block a user