1name: svt-av1-enc
2base: core18
3version: 'git'
4summary: Scalable Video Technology implementation of AV1 encoder
5description: |
6  An AV1-compliant cpu-based encoder library and sample application
7  with performance levels suitable for video on demand and live
8  encoding.
9
10grade: devel
11confinement: strict
12
13apps:
14  svt-av1-enc:
15    command: bin/SvtAv1EncApp
16    plugs: [ 'home' ]
17
18parts:
19  svtav1:
20    plugin: cmake
21    build-packages: [ 'yasm', 'g++', ]
22    source: .
23    configflags:
24      - -DCMAKE_BUILD_TYPE=Release
25      - -DCMAKE_C_COMPILER=gcc
26      - -DCMAKE_ASM_NASM_COMPILER=yasm
27
28