diff options
author | Martin Storsjö <martin@martin.st> | 2012-08-06 16:49:32 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-08-15 22:32:06 +0300 |
commit | 1d9c2dc89a2302076a68b4a3ae3639abbb1a502d (patch) | |
tree | 2c422621a5a9ffd2e0aac646228b186221aede2b /libavcodec/noise_bsf.c | |
parent | 93f257db6b818896e58c708d3c2ec4b8cb0c7b00 (diff) | |
download | ffmpeg-1d9c2dc89a2302076a68b4a3ae3639abbb1a502d.tar.gz |
Don't include common.h from avutil.h
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/noise_bsf.c')
-rw-r--r-- | libavcodec/noise_bsf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/noise_bsf.c b/libavcodec/noise_bsf.c index 489e3c7c7c..3e552e29f8 100644 --- a/libavcodec/noise_bsf.c +++ b/libavcodec/noise_bsf.c @@ -18,7 +18,11 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <stdlib.h> +#include <string.h> + #include "avcodec.h" +#include "libavutil/mem.h" static int noise(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args, |