/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2010-2013 Bluecherry, LLC <https://www.bluecherrydvr.com> * * Original author: * Ben Collins <[email protected]> * * Additional work by: * John Brooks <[email protected]> */ #ifndef __SOLO6X10_JPEG_H #define __SOLO6X10_JPEG_H static const u8 jpeg_header[] = …; /* This is the byte marker for the start of SOF0: 0xffc0 marker */ #define SOF0_START … /* This is the byte marker for the start of the DQT */ #define DQT_START … #define DQT_LEN … static const u8 jpeg_dqt[4][DQT_LEN] = …; #endif /* __SOLO6X10_JPEG_H */