162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */ 262306a36Sopenharmony_ci 362306a36Sopenharmony_ci#ifndef _MEDIA_JPEG_H_ 462306a36Sopenharmony_ci#define _MEDIA_JPEG_H_ 562306a36Sopenharmony_ci 662306a36Sopenharmony_ci/* JPEG markers */ 762306a36Sopenharmony_ci#define JPEG_MARKER_TEM 0x01 862306a36Sopenharmony_ci#define JPEG_MARKER_SOF0 0xc0 962306a36Sopenharmony_ci#define JPEG_MARKER_DHT 0xc4 1062306a36Sopenharmony_ci#define JPEG_MARKER_RST 0xd0 1162306a36Sopenharmony_ci#define JPEG_MARKER_SOI 0xd8 1262306a36Sopenharmony_ci#define JPEG_MARKER_EOI 0xd9 1362306a36Sopenharmony_ci#define JPEG_MARKER_SOS 0xda 1462306a36Sopenharmony_ci#define JPEG_MARKER_DQT 0xdb 1562306a36Sopenharmony_ci#define JPEG_MARKER_DRI 0xdd 1662306a36Sopenharmony_ci#define JPEG_MARKER_DHP 0xde 1762306a36Sopenharmony_ci#define JPEG_MARKER_APP0 0xe0 1862306a36Sopenharmony_ci#define JPEG_MARKER_COM 0xfe 1962306a36Sopenharmony_ci 2062306a36Sopenharmony_ci#endif /* _MEDIA_JPEG_H_ */ 21