FFmpeg
Loading...
Searching...
No Matches
jpegxs.h
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#ifndef AVCODEC_JPEGXS_H
20#define AVCODEC_JPEGXS_H
21
22enum {
23 JPEGXS_MARKER_SOC = 0xff10, // Start of codestream
24 JPEGXS_MARKER_EOC = 0xff11, // End of codestream
25 JPEGXS_MARKER_PIH = 0xff12, // Picture header
26 JPEGXS_MARKER_CDT = 0xff13, // Component table
27 JPEGXS_MARKER_WGT = 0xff14, // Weights table
28 JPEGXS_MARKER_COM = 0xff15, // Extension marker
29 JPEGXS_MARKER_NLT = 0xff16, // Nonlinearity marker
30 JPEGXS_MARKER_CWD = 0xff17, // Component-dependent wavelet decomposition marker
31 JPEGXS_MARKER_CTS = 0xff18, // Colour transformation specification marker
32 JPEGXS_MARKER_CRG = 0xff19, // Component registration marker
33 JPEGXS_MARKER_SLH = 0xff20, // Slice header
34 JPEGXS_MARKER_CAP = 0xff50, // Capabilities Marker
35};
36
37#endif /* AVCODEC_JPEGXS_H */
@ JPEGXS_MARKER_WGT
Definition jpegxs.h:27
@ JPEGXS_MARKER_PIH
Definition jpegxs.h:25
@ JPEGXS_MARKER_CWD
Definition jpegxs.h:30
@ JPEGXS_MARKER_SLH
Definition jpegxs.h:33
@ JPEGXS_MARKER_CAP
Definition jpegxs.h:34
@ JPEGXS_MARKER_COM
Definition jpegxs.h:28
@ JPEGXS_MARKER_EOC
Definition jpegxs.h:24
@ JPEGXS_MARKER_SOC
Definition jpegxs.h:23
@ JPEGXS_MARKER_CRG
Definition jpegxs.h:32
@ JPEGXS_MARKER_NLT
Definition jpegxs.h:29
@ JPEGXS_MARKER_CDT
Definition jpegxs.h:26
@ JPEGXS_MARKER_CTS
Definition jpegxs.h:31