mirror of
https://github.com/mpv-player/mpv
synced 2024-12-23 23:32:26 +00:00
fixed wrong function pointers definitions
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15259 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
23153505ff
commit
1164c516db
@ -8,6 +8,7 @@
|
||||
#define ACODEC_NULL 3
|
||||
#define ACODEC_LAVC 4
|
||||
#define ACODEC_TOOLAME 5
|
||||
#define ACODEC_FAAC 6
|
||||
|
||||
#define AE_NEEDS_COMPRESSED_INPUT 1
|
||||
|
||||
@ -19,7 +20,7 @@ typedef struct {
|
||||
int audio_preload;
|
||||
} audio_encoding_params_t;
|
||||
|
||||
typedef struct {
|
||||
typedef struct audio_encoder_s {
|
||||
int codec;
|
||||
int flags;
|
||||
muxer_stream_t *stream;
|
||||
@ -31,12 +32,12 @@ typedef struct {
|
||||
int decode_buffer_size;
|
||||
int decode_buffer_len;
|
||||
void *priv;
|
||||
int (*bind)(void*, muxer_stream_t*);
|
||||
int (*get_frame_size)(void*);
|
||||
int (*set_decoded_len)(void *encoder, int len);
|
||||
int (*encode)(void *encoder, uint8_t *dest, void *src, int nsamples, int max_size);
|
||||
int (*fixup)();
|
||||
int (*close)();
|
||||
int (*bind)(struct audio_encoder_s*, muxer_stream_t*);
|
||||
int (*get_frame_size)(struct audio_encoder_s*);
|
||||
int (*set_decoded_len)(struct audio_encoder_s *encoder, int len);
|
||||
int (*encode)(struct audio_encoder_s *encoder, uint8_t *dest, void *src, int nsamples, int max_size);
|
||||
void (*fixup)(struct audio_encoder_s *encoder);
|
||||
int (*close)(struct audio_encoder_s *encoder);
|
||||
} audio_encoder_t;
|
||||
|
||||
audio_encoder_t *new_audio_encoder(muxer_stream_t *stream, audio_encoding_params_t *params);
|
||||
|
@ -41,9 +41,9 @@ static int encode_pcm(audio_encoder_t *encoder, uint8_t *dest, void *src, int ns
|
||||
return max_size;
|
||||
}
|
||||
|
||||
static void set_decoded_len(audio_encoder_t *encoder, int len)
|
||||
static int set_decoded_len(audio_encoder_t *encoder, int len)
|
||||
{
|
||||
return;
|
||||
return len;
|
||||
}
|
||||
|
||||
static int close_pcm(audio_encoder_t *encoder)
|
||||
|
Loading…
Reference in New Issue
Block a user