Module: libav Branch: master Commit: 5026f946fda58b209334a40319af7c42ceb985fe
Author: Mans Rullgard <[email protected]> Committer: Mans Rullgard <[email protected]> Date: Mon May 16 15:23:22 2011 +0100 Add missing #includes to mp3_header_(de)compress bsf Signed-off-by: Mans Rullgard <[email protected]> --- libavcodec/mp3_header_compress_bsf.c | 1 + libavcodec/mp3_header_decompress_bsf.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/libavcodec/mp3_header_compress_bsf.c b/libavcodec/mp3_header_compress_bsf.c index 5a69377..c880e5e 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 7dda795..b4b4167 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" _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
