27 lines
616 B
C
Executable File
27 lines
616 B
C
Executable File
/*
|
|
********************************************************************************
|
|
* mpp multimedia framework
|
|
*
|
|
* (c) Copyright 2010-2019, Allwinner Microelectronic Co., Ltd.
|
|
* All Rights Reserved
|
|
*
|
|
* File : UvcChnDefine.h
|
|
* Version: V1.0
|
|
* By : eric_wang
|
|
* Date : 2018-12-18
|
|
* Description:
|
|
********************************************************************************
|
|
*/
|
|
#ifndef _UVCCHNDEFINE_H_
|
|
#define _UVCCHNDEFINE_H_
|
|
|
|
enum class UvcChn
|
|
{
|
|
UvcMainChn = 0,
|
|
VdecMainChn = 1,
|
|
VdecSubChn = 2,
|
|
};
|
|
|
|
#endif /* _UVCCHNDEFINE_H_ */
|
|
|