-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcodec_timer.h
34 lines (27 loc) · 1.07 KB
/
vcodec_timer.h
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
/*
* SIC LABORATORY, LG ELECTRONICS INC., SEOUL, KOREA
* Copyright(c) 2013 by LG Electronics Inc.
* Youngki Lyu <youngki.lyu@lge.com>
* Jungmin Park <jungmin016.park@lge.com>
* Younghyun Jo <younghyun.jo@lge.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef _VCODEC_TIMER_H_
#define _VCODEC_TIMER_H_
#include <linux/types.h>
void *vcodec_timer_open( void *vcodec_id,
bool (*feed_timer)(void *vcodec_id),
void (*expire_watchdog_timer)(void *vcodec_id) );
void vcodec_timer_close( void *vcodec_timer_id );
void vcodec_update_timer_status( void *vcodec_timer_id );
void vcodec_timer_init( void );
void vcodec_timer_cleanup( void );
#endif /*#ifndef _VCODEC_TIMER_H_*/