diff options
author | Stefano Pigozzi <stefano.pigozzi@gmail.com> | 2013-08-06 22:41:30 +0200 |
---|---|---|
committer | Stefano Pigozzi <stefano.pigozzi@gmail.com> | 2013-08-06 22:52:31 +0200 |
commit | 406241005e3d897b30a5b168a16ad61f0996c43c (patch) | |
tree | 7884ce5d2d4f5aaa253ffd82e567d13bdd2860af /audio/decode | |
parent | bc27f946c27e33933a3a696cade78a04902c8dce (diff) |
core: move contents to mpvcore (2/2)
Followup commit. Fixes all the files references.
Diffstat (limited to 'audio/decode')
-rw-r--r-- | audio/decode/ad.h | 2 | ||||
-rw-r--r-- | audio/decode/ad_lavc.c | 10 | ||||
-rw-r--r-- | audio/decode/ad_mpg123.c | 2 | ||||
-rw-r--r-- | audio/decode/ad_spdif.c | 6 | ||||
-rw-r--r-- | audio/decode/dec_audio.c | 6 |
5 files changed, 13 insertions, 13 deletions
diff --git a/audio/decode/ad.h b/audio/decode/ad.h index 3b18c7e977..1d9ac13e35 100644 --- a/audio/decode/ad.h +++ b/audio/decode/ad.h @@ -19,7 +19,7 @@ #ifndef MPLAYER_AD_H #define MPLAYER_AD_H -#include "core/codecs.h" +#include "mpvcore/codecs.h" #include "demux/stheader.h" #include "demux/demux.h" diff --git a/audio/decode/ad_lavc.c b/audio/decode/ad_lavc.c index da7c5aeaad..409fda4951 100644 --- a/audio/decode/ad_lavc.c +++ b/audio/decode/ad_lavc.c @@ -29,11 +29,11 @@ #include "talloc.h" #include "config.h" -#include "core/av_common.h" -#include "core/codecs.h" -#include "core/mp_msg.h" -#include "core/options.h" -#include "core/av_opts.h" +#include "mpvcore/av_common.h" +#include "mpvcore/codecs.h" +#include "mpvcore/mp_msg.h" +#include "mpvcore/options.h" +#include "mpvcore/av_opts.h" #include "ad.h" #include "audio/reorder_ch.h" diff --git a/audio/decode/ad_mpg123.c b/audio/decode/ad_mpg123.c index d8cc702234..9594cb61ef 100644 --- a/audio/decode/ad_mpg123.c +++ b/audio/decode/ad_mpg123.c @@ -25,7 +25,7 @@ #include "config.h" #include "ad.h" -#include "core/mp_msg.h" +#include "mpvcore/mp_msg.h" /* Reducing the ifdeffery to two main variants: * 1. most compatible to any libmpg123 version diff --git a/audio/decode/ad_spdif.c b/audio/decode/ad_spdif.c index f3a6e3dd1f..a53513dead 100644 --- a/audio/decode/ad_spdif.c +++ b/audio/decode/ad_spdif.c @@ -25,9 +25,9 @@ #include <libavutil/opt.h> #include "config.h" -#include "core/mp_msg.h" -#include "core/av_common.h" -#include "core/options.h" +#include "mpvcore/mp_msg.h" +#include "mpvcore/av_common.h" +#include "mpvcore/options.h" #include "ad.h" #define FILENAME_SPDIFENC "spdif" diff --git a/audio/decode/dec_audio.c b/audio/decode/dec_audio.c index a73027e224..c368350f71 100644 --- a/audio/decode/dec_audio.c +++ b/audio/decode/dec_audio.c @@ -26,9 +26,9 @@ #include "demux/codec_tags.h" #include "config.h" -#include "core/codecs.h" -#include "core/mp_msg.h" -#include "core/bstr.h" +#include "mpvcore/codecs.h" +#include "mpvcore/mp_msg.h" +#include "mpvcore/bstr.h" #include "stream/stream.h" #include "demux/demux.h" |