diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2009-11-23 22:28:45 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2009-11-23 22:28:45 +0000 |
commit | 9401357f01224c4875f706853f431a84efc3a79c (patch) | |
tree | 926934057013e9344eff2de543093dad16bce791 /libavcodec | |
parent | 168f92ffaa724df953be7be27d5bc7d7edd457d3 (diff) | |
download | ffmpeg-9401357f01224c4875f706853f431a84efc3a79c.tar.gz |
Add missing include. Fix the following compiler warnings:
twinvq.c: In function 'decode_lsp':
twinvq.c:575: warning: implicit declaration of function 'ff_sort_nearly_sorted_floats'
Originally committed as revision 20594 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/twinvq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/twinvq.c b/libavcodec/twinvq.c index 8e198ea100..7131584232 100644 --- a/libavcodec/twinvq.c +++ b/libavcodec/twinvq.c @@ -22,6 +22,7 @@ #include "avcodec.h" #include "get_bits.h" #include "dsputil.h" +#include "lsp.h" #include <math.h> #include <stdint.h> |