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
40
41
42
43
| # vim: syntax=cmake
|
| add_subdirectory(dummy)
|
| if( HAVE_AVSD )
| add_subdirectory(avs)
| endif()
|
| if( HAVE_H263D )
| add_subdirectory(h263)
| endif()
|
| if( HAVE_H264D )
| add_subdirectory(h264)
| endif()
|
| if( HAVE_H265D )
| add_subdirectory(h265)
| endif()
|
| if( HAVE_MPEG2D )
| add_subdirectory(m2v)
| endif()
|
| if( HAVE_MPEG4D )
| add_subdirectory(mpg4)
| endif()
|
| if( HAVE_VP8D )
| add_subdirectory(vp8)
| endif()
|
| if( HAVE_VP9D )
| add_subdirectory(vp9)
| endif()
|
| if( HAVE_JPEGD )
| add_subdirectory(jpeg)
| endif()
|
| if( HAVE_AV1D )
| add_subdirectory(av1)
| endif()
|
|