From 92d874cb787da19f42b8263033131353691ce487 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 22 Jan 2013 20:27:01 +0000 Subject: [PATCH] flacenc: include correct header Encoder needs put_bits.h, not get_bits.h Signed-off-by: Paul B Mahol --- libavcodec/flacenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"