diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-01-22 20:27:01 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-01-23 11:21:09 +0000 |
commit | 92d874cb787da19f42b8263033131353691ce487 (patch) | |
tree | 24ed97850b16dcf4e25ff14dde5fac22e7cba5fb | |
parent | 4e692374f7962ea358c329de38c380103f8991b6 (diff) | |
download | ffmpeg-92d874cb787da19f42b8263033131353691ce487.tar.gz |
flacenc: include correct header
Encoder needs put_bits.h, not get_bits.h
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavcodec/flacenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flacenc.c b/libavcodec/flacenc.c index b6364e1afc..bbdeaad20b 100644 --- a/libavcodec/flacenc.c +++ b/libavcodec/flacenc.c @@ -26,7 +26,7 @@ #include "libavutil/opt.h" #include "avcodec.h" #include "dsputil.h" -#include "get_bits.h" +#include "put_bits.h" #include "golomb.h" #include "internal.h" #include "lpc.h" |