diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-22 12:59:29 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-06-25 13:42:37 +0200 |
commit | 972cad77fa13ae312650dd0b7b99e484ffcb7949 (patch) | |
tree | 9418bafd12d7af361996955f0d98c8b500d3e239 /libavfilter/buffersrc.h | |
parent | a31ab5071246768976923de3b318b57312b7ad9b (diff) | |
download | ffmpeg-972cad77fa13ae312650dd0b7b99e484ffcb7949.tar.gz |
lavfi: remove unnecessary inclusion of libavcodec/avcodec.h in avfilter.h
libavfilter API was designed in order to be clarly distinguished from the
libavcodec API, including avcodec.h in avfilter.h is not going to help to
stick to this principle.
The inclusion of libavutil/audioconvert.h in many files was required
because avcodec.h includes audioconvert.h.
libavfilter/avcodec.h is where the lavc/lavfi interface should be
entirely placed.
Diffstat (limited to 'libavfilter/buffersrc.h')
-rw-r--r-- | libavfilter/buffersrc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/buffersrc.h b/libavfilter/buffersrc.h index cd6492e5cb..adfb33022f 100644 --- a/libavfilter/buffersrc.h +++ b/libavfilter/buffersrc.h @@ -25,6 +25,7 @@ * Memory buffer source API. */ +#include "libavcodec/avcodec.h" #include "avfilter.h" enum { |