diff options
author | Denis Loh <denis.loh@gmail.com> | 2010-01-25 12:10:01 +0100 |
---|---|---|
committer | Denis Loh <denis.loh@gmail.com> | 2010-01-25 12:10:01 +0100 |
commit | 724cb5e3783311f6b8c808852dbe2de59f2399b0 (patch) | |
tree | be1f2d617b4a3e2e156b7a2d6ba9ee335cde63cf /inc/profiles.h | |
parent | 0152f33daffe3fe943d6a134409d02df7ecaa982 (diff) | |
download | vdr-plugin-upnp-724cb5e3783311f6b8c808852dbe2de59f2399b0.tar.gz vdr-plugin-upnp-724cb5e3783311f6b8c808852dbe2de59f2399b0.tar.bz2 |
Fixed small bug which leads to an empty TV folder
Diffstat (limited to 'inc/profiles.h')
-rw-r--r-- | inc/profiles.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/inc/profiles.h b/inc/profiles.h new file mode 100644 index 0000000..c50e4ee --- /dev/null +++ b/inc/profiles.h @@ -0,0 +1,32 @@ +/* + * File: profiles.h + * Author: savop + * + * Created on 8. Dezember 2009, 12:45 + */ + +#ifndef _PROFILES_H +#define _PROFILES_H + +#include "../common.h" + +#include "profiles/aac.h" +#include "profiles/ac3.h" +#include "profiles/amr.h" +#include "profiles/atrac3plus.h" +#include "profiles/jpeg.h" +#include "profiles/lpcm.h" +#include "profiles/mpa.h" +#include "profiles/mpeg1.h" +#include "profiles/mpeg2.h" +#include "profiles/mpeg4_p2.h" +#include "profiles/mpeg4_p10.h" +#include "profiles/png.h" + +#ifdef WITH_WINDOWS_MEDIA + #include "profiles/wma.h" + #include "profiles/wmv9.h" +#endif + +#endif /* _PROFILES_H */ + |