diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-03-23 17:45:48 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-04-20 09:43:11 -0400 |
commit | 0c0d1bce7c582b82e49843acaa7d0fb4b1774b21 (patch) | |
tree | 44fac8c6c906107b61ee80089dfd6a4fb5e53f00 /libavutil/Makefile | |
parent | 2b98377935384ecd22c2cd26106b9e03a6c9f598 (diff) | |
download | ffmpeg-0c0d1bce7c582b82e49843acaa7d0fb4b1774b21.tar.gz |
avutil: add audio fifo buffer
The functions operate on the sample level rather than the byte level and work
with all audio sample formats.
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 820abb1429..69f2acd72e 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -3,6 +3,7 @@ NAME = avutil HEADERS = adler32.h \ aes.h \ attributes.h \ + audio_fifo.h \ audioconvert.h \ avassert.h \ avstring.h \ @@ -40,6 +41,7 @@ BUILT_HEADERS = avconfig.h OBJS = adler32.o \ aes.o \ + audio_fifo.o \ audioconvert.o \ avstring.o \ base64.o \ |