diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-02-07 14:28:50 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-03-20 18:55:36 -0400 |
commit | d1afb2f94e7070cca7c62dcbc258efc85f267249 (patch) | |
tree | 889ebe166c8b8d05c7e81746caedbb1d971b11fd /libavcodec/Makefile | |
parent | 59041fd053d11d26772ac45e21b6ac3eea39c738 (diff) | |
download | ffmpeg-d1afb2f94e7070cca7c62dcbc258efc85f267249.tar.gz |
libfaac: use AVCodec.encode2()
Encoder output is delayed by several frames, so we keep a queue of input
frame timing info to match up with corresponding output packets.
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index a9b9a7e9fa..65385aa874 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -581,7 +581,7 @@ OBJS-$(CONFIG_WTV_DEMUXER) += mpeg4audio.o mpegaudiodata.o # external codec libraries OBJS-$(CONFIG_LIBDIRAC_DECODER) += libdiracdec.o -OBJS-$(CONFIG_LIBFAAC_ENCODER) += libfaac.o +OBJS-$(CONFIG_LIBFAAC_ENCODER) += libfaac.o audio_frame_queue.o OBJS-$(CONFIG_LIBGSM_DECODER) += libgsm.o OBJS-$(CONFIG_LIBGSM_ENCODER) += libgsm.o OBJS-$(CONFIG_LIBGSM_MS_DECODER) += libgsm.o |