blob: c50e4ee3acb11bf55ccb7e94df33d10b6a61983b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 */
|