diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-01-29 19:01:10 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-03-20 18:46:56 -0400 |
commit | aa872af5e3993c63293bbf1e33183117112b8b7a (patch) | |
tree | 78e1df718ac816d7fc9f9a4953df4212667fa47a /libavcodec/ac3enc.h | |
parent | ad95307f9251aa8c0e8773727589d3c1986655fc (diff) | |
download | ffmpeg-aa872af5e3993c63293bbf1e33183117112b8b7a.tar.gz |
ac3enc: update to AVCodec.encode2()
Update FATE references due to encoder delay.
Diffstat (limited to 'libavcodec/ac3enc.h')
-rw-r--r-- | libavcodec/ac3enc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/ac3enc.h b/libavcodec/ac3enc.h index 6ef1a5373a..e8415a2d69 100644 --- a/libavcodec/ac3enc.h +++ b/libavcodec/ac3enc.h @@ -297,9 +297,9 @@ int ff_ac3_float_mdct_init(AC3EncodeContext *s); int ff_ac3_fixed_allocate_sample_buffers(AC3EncodeContext *s); int ff_ac3_float_allocate_sample_buffers(AC3EncodeContext *s); -int ff_ac3_fixed_encode_frame(AVCodecContext *avctx, unsigned char *frame, - int buf_size, void *data); -int ff_ac3_float_encode_frame(AVCodecContext *avctx, unsigned char *frame, - int buf_size, void *data); +int ff_ac3_fixed_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, + const AVFrame *frame, int *got_packet_ptr); +int ff_ac3_float_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, + const AVFrame *frame, int *got_packet_ptr); #endif /* AVCODEC_AC3ENC_H */ |