diff options
author | Ramiro Polla <ramiro@lisha.ufsc.br> | 2010-02-13 03:43:10 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-02-13 03:43:10 +0000 |
commit | 3beb81e744245047590e162c9723ad3ca73eddb2 (patch) | |
tree | 9e0a7e79cdc1a605dde8e6312b5c3af85ca0ba8a /libavcodec/libgsm.c | |
parent | 812bfd7b4480094e1169f7dfabd5b44e2158379d (diff) | |
download | ffmpeg-3beb81e744245047590e162c9723ad3ca73eddb2.tar.gz |
Fix compilation with --enable-libgsm on Gentoo and OpenSUSE.
Patch by Ramiro
Originally committed as revision 21786 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libgsm.c')
-rw-r--r-- | libavcodec/libgsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libgsm.c b/libavcodec/libgsm.c index a9ee7d040d..9dfad1392c 100644 --- a/libavcodec/libgsm.c +++ b/libavcodec/libgsm.c @@ -28,7 +28,7 @@ // The idiosyncrasies of GSM-in-WAV are explained at http://kbs.cs.tu-berlin.de/~jutta/toast.html #include "avcodec.h" -#include <gsm.h> +#include <gsm/gsm.h> // gsm.h misses some essential constants #define GSM_BLOCK_SIZE 33 |