diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-06-05 01:28:22 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-06-07 10:31:26 +0200 |
commit | dc25d79f4980fb547908f4dd43732ebc0622610c (patch) | |
tree | 91694594d20104d3425db813f6f70cf9b61ca6a2 /libavcodec | |
parent | b9c6c7cb25932b594fd684a0cb553e439d49fe12 (diff) | |
download | ffmpeg-dc25d79f4980fb547908f4dd43732ebc0622610c.tar.gz |
Drop unnecessary directory prefixes from #include directives.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aac_tablegen.h | 2 | ||||
-rw-r--r-- | libavcodec/dnxhdenc.h | 5 | ||||
-rw-r--r-- | libavcodec/mlpdsp.c | 2 | ||||
-rw-r--r-- | libavcodec/v210enc.c | 2 |
4 files changed, 6 insertions, 5 deletions
diff --git a/libavcodec/aac_tablegen.h b/libavcodec/aac_tablegen.h index 4486e1a9fc..8773d9b975 100644 --- a/libavcodec/aac_tablegen.h +++ b/libavcodec/aac_tablegen.h @@ -29,7 +29,7 @@ #include "libavcodec/aac_tables.h" #else #include "libavutil/mathematics.h" -#include "libavcodec/aac.h" +#include "aac.h" float ff_aac_pow2sf_tab[428]; void ff_aac_tableinit(void) diff --git a/libavcodec/dnxhdenc.h b/libavcodec/dnxhdenc.h index 43f65e46dd..bb24540a9f 100644 --- a/libavcodec/dnxhdenc.h +++ b/libavcodec/dnxhdenc.h @@ -25,8 +25,9 @@ #define AVCODEC_DNXHDENC_H #include <stdint.h> -#include "libavcodec/mpegvideo.h" -#include "libavcodec/dnxhddata.h" + +#include "mpegvideo.h" +#include "dnxhddata.h" typedef struct { uint16_t mb; diff --git a/libavcodec/mlpdsp.c b/libavcodec/mlpdsp.c index 0053df88d8..7d01c7586d 100644 --- a/libavcodec/mlpdsp.c +++ b/libavcodec/mlpdsp.c @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "libavcodec/mlp.h" #include "dsputil.h" +#include "mlp.h" static void ff_mlp_filter_channel(int32_t *state, const int32_t *coeff, int firorder, int iirorder, diff --git a/libavcodec/v210enc.c b/libavcodec/v210enc.c index dcaaac0dc5..8b022fa8f8 100644 --- a/libavcodec/v210enc.c +++ b/libavcodec/v210enc.c @@ -22,7 +22,7 @@ */ #include "avcodec.h" -#include "libavcodec/bytestream.h" +#include "bytestream.h" static av_cold int encode_init(AVCodecContext *avctx) { |