hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
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
/* SPDX-License-Identifier: GPL-2.0+ */
/*
 * Copyright (C) 2018 BayLibre, SAS
 * Author: Maxime Jourdan <mjourdan@baylibre.com>
 */
 
#ifndef __MESON_VDEC_ESPARSER_H_
#define __MESON_VDEC_ESPARSER_H_
 
#include <linux/platform_device.h>
 
#include "vdec.h"
 
int esparser_init(struct platform_device *pdev, struct amvdec_core *core);
int esparser_power_up(struct amvdec_session *sess);
 
/**
 * esparser_queue_eos() - write End Of Stream sequence to the ESPARSER
 *
 * @core vdec core struct
 */
int esparser_queue_eos(struct amvdec_core *core, const u8 *data, u32 len);
 
/**
 * esparser_queue_all_src() - work handler that writes as many src buffers
 * as possible to the ESPARSER
 */
void esparser_queue_all_src(struct work_struct *work);
 
#define ESPARSER_MIN_PACKET_SIZE SZ_4K
 
#endif