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
33
34
35
36
37
38
39
| # vim: syntax=cmake
|
| add_subdirectory(common)
|
| if( HAVE_H263D )
| add_subdirectory(h263d)
| endif()
|
| if( HAVE_MPEG2D )
| add_subdirectory(m2vd)
| endif()
|
| if( HAVE_MPEG4D )
| add_subdirectory(mpg4d)
| endif()
|
| if( HAVE_VP8D )
| add_subdirectory(vp8d)
| endif()
|
| if( HAVE_JPEGD )
| add_subdirectory(jpegd)
| endif()
|
| if( HAVE_AV1D )
| add_subdirectory(av1d)
| endif()
|
| if( HAVE_JPEGE )
| add_subdirectory(jpege)
| endif()
|
| if( HAVE_H264E )
| add_subdirectory(h264e)
| endif()
|
| if( HAVE_VP8E)
| add_subdirectory(vp8e)
| endif()
|
|