From 5026f946fda58b209334a40319af7c42ceb985fe Mon Sep 17 00:00:00 2001 From: Mans Rullgard Date: Mon, 16 May 2011 15:23:22 +0100 Subject: Add missing #includes to mp3_header_(de)compress bsf Signed-off-by: Mans Rullgard --- libavcodec/mp3_header_compress_bsf.c | 1 + libavcodec/mp3_header_decompress_bsf.c | 1 + 2 files changed, 2 insertions(+) diff --git a/libavcodec/mp3_header_compress_bsf.c b/libavcodec/mp3_header_compress_bsf.c index 5a693774f9..c880e5e53d 100644 --- a/libavcodec/mp3_header_compress_bsf.c +++ b/libavcodec/mp3_header_compress_bsf.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/intreadwrite.h" #include "avcodec.h" #include "mpegaudio.h" diff --git a/libavcodec/mp3_header_decompress_bsf.c b/libavcodec/mp3_header_decompress_bsf.c index 7dda795db5..b4b4167620 100644 --- a/libavcodec/mp3_header_decompress_bsf.c +++ b/libavcodec/mp3_header_decompress_bsf.c @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/intreadwrite.h" #include "avcodec.h" #include "mpegaudio.h" #include "mpegaudiodata.h" -- cgit v1.2.3