summaryrefslogtreecommitdiff
path: root/chip/mt_scp/mt8195/video.c
blob: f90a2c4764e4cb6571f0ab15bfc80f457c095c60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Copyright 2021 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "common.h"
#include "video.h"

uint32_t video_get_enc_capability(void)
{
	return VENC_CAP_4K;
}

uint32_t video_get_dec_capability(void)
{
	return VDEC_CAP_INNER_RACING | VDEC_CAP_MM21 | VDEC_CAP_H264_SLICE |
	       VDEC_CAP_VP8_FRAME | VDEC_CAP_VP9_FRAME;
}