mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-01-12 00:06:51 +08:00
avcodec: add a JPEG-XS parser
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -15,6 +15,7 @@ version <next>:
|
||||
- DPX Vulkan hwaccel
|
||||
- Rockchip H.264/HEVC hardware encoder
|
||||
- Add vf_scale_d3d12 filter
|
||||
- JPEG-XS parser
|
||||
|
||||
|
||||
version 8.0:
|
||||
|
||||
@@ -1272,6 +1272,7 @@ OBJS-$(CONFIG_HDR_PARSER) += hdr_parser.o
|
||||
OBJS-$(CONFIG_IPU_PARSER) += ipu_parser.o
|
||||
OBJS-$(CONFIG_JPEG2000_PARSER) += jpeg2000_parser.o
|
||||
OBJS-$(CONFIG_JPEGXL_PARSER) += jpegxl_parser.o jpegxl_parse.o
|
||||
OBJS-$(CONFIG_JPEGXS_PARSER) += jpegxs_parser.o
|
||||
OBJS-$(CONFIG_MISC4_PARSER) += misc4_parser.o
|
||||
OBJS-$(CONFIG_MJPEG_PARSER) += mjpeg_parser.o
|
||||
OBJS-$(CONFIG_MLP_PARSER) += mlp_parse.o mlp_parser.o mlp.o
|
||||
|
||||
37
libavcodec/jpegxs.h
Normal file
37
libavcodec/jpegxs.h
Normal file
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* This file is part of FFmpeg.
|
||||
*
|
||||
* FFmpeg is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* FFmpeg 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with FFmpeg; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef AVCODEC_JPEGXS_H
|
||||
#define AVCODEC_JPEGXS_H
|
||||
|
||||
enum {
|
||||
JPEGXS_MARKER_SOC = 0xff10, // Start of codestream
|
||||
JPEGXS_MARKER_EOC = 0xff11, // End of codestream
|
||||
JPEGXS_MARKER_PIH = 0xff12, // Picture header
|
||||
JPEGXS_MARKER_CDT = 0xff13, // Component table
|
||||
JPEGXS_MARKER_WGT = 0xff14, // Weights table
|
||||
JPEGXS_MARKER_COM = 0xff15, // Extension marker
|
||||
JPEGXS_MARKER_NLT = 0xff16, // Nonlinearity marker
|
||||
JPEGXS_MARKER_CWD = 0xff17, // Component-dependent wavelet decomposition marker
|
||||
JPEGXS_MARKER_CTS = 0xff18, // Colour transformation specification marker
|
||||
JPEGXS_MARKER_CRG = 0xff19, // Component registration marker
|
||||
JPEGXS_MARKER_SLH = 0xff20, // Slice header
|
||||
JPEGXS_MARKER_CAP = 0xff50, // Capabilities Marker
|
||||
};
|
||||
|
||||
#endif /* AVCODEC_JPEGXS_H */
|
||||
207
libavcodec/jpegxs_parser.c
Normal file
207
libavcodec/jpegxs_parser.c
Normal file
@@ -0,0 +1,207 @@
|
||||
/*
|
||||
* This file is part of FFmpeg.
|
||||
*
|
||||
* FFmpeg is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* FFmpeg 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with FFmpeg; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "bytestream.h"
|
||||
#include "get_bits.h"
|
||||
#include "jpegxs.h"
|
||||
#include "parser.h"
|
||||
#include "parser_internal.h"
|
||||
|
||||
/**
|
||||
* Find the end of the current frame in the bitstream.
|
||||
* @return the position of the first byte of the next frame, or -1
|
||||
*/
|
||||
static int jpegxs_find_frame_end(ParseContext *pc, const uint8_t *buf,
|
||||
int buf_size)
|
||||
{
|
||||
int pic_found, i = 0;
|
||||
uint32_t state;
|
||||
|
||||
pic_found = pc->frame_start_found;
|
||||
state = pc->state;
|
||||
|
||||
if (!pic_found) {
|
||||
for (i = 0; i < buf_size; i++) {
|
||||
state = (state << 8) | buf[i];
|
||||
if ((uint16_t)state == JPEGXS_MARKER_SOC) {
|
||||
i++;
|
||||
pic_found = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (pic_found) {
|
||||
if (buf_size == 0)
|
||||
return 0;
|
||||
for(; i < buf_size; i++) {
|
||||
state = (state << 8) | buf[i];
|
||||
if ((uint16_t)state == JPEGXS_MARKER_EOC) {
|
||||
pc->frame_start_found = 0;
|
||||
pc->state = -1;
|
||||
return i + 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pc->frame_start_found = pic_found;
|
||||
pc->state = state;
|
||||
return END_NOT_FOUND;
|
||||
}
|
||||
|
||||
static int jpegxs_parse_frame(AVCodecParserContext *s, AVCodecContext *avctx,
|
||||
const uint8_t *buf, int buf_size)
|
||||
{
|
||||
GetByteContext gbc;
|
||||
GetBitContext gb;
|
||||
int8_t bpc[3], log2_chroma_w[3], log2_chroma_h[3];
|
||||
int size, marker, components;
|
||||
|
||||
s->key_frame = 1;
|
||||
s->pict_type = AV_PICTURE_TYPE_I;
|
||||
|
||||
if (buf_size < 4)
|
||||
return 0;
|
||||
|
||||
bytestream2_init(&gbc, buf, buf_size);
|
||||
marker = bytestream2_get_be16(&gbc);
|
||||
if (marker != JPEGXS_MARKER_SOC)
|
||||
return 0;
|
||||
|
||||
marker = bytestream2_get_be16(&gbc);
|
||||
if (marker != JPEGXS_MARKER_CAP)
|
||||
return 0;
|
||||
size = bytestream2_get_be16(&gbc);
|
||||
bytestream2_skip(&gbc, FFMAX(size - 2, 0));
|
||||
|
||||
marker = bytestream2_get_be16(&gbc);
|
||||
if (marker != JPEGXS_MARKER_PIH)
|
||||
return 0;
|
||||
size = bytestream2_get_be16(&gbc);
|
||||
bytestream2_skip(&gbc, 4); // Lcod
|
||||
bytestream2_skip(&gbc, 2); // Ppih
|
||||
bytestream2_skip(&gbc, 2); // Plev
|
||||
size -= 8;
|
||||
|
||||
s->width = bytestream2_get_be16(&gbc);
|
||||
s->height = bytestream2_get_be16(&gbc);
|
||||
size -= 4;
|
||||
|
||||
bytestream2_skip(&gbc, 2); // Cw
|
||||
bytestream2_skip(&gbc, 2); // Hsl
|
||||
size -= 4;
|
||||
|
||||
components = bytestream2_get_byte(&gbc);
|
||||
if (components != 1 && components != 3)
|
||||
return 0;
|
||||
size--;
|
||||
|
||||
bytestream2_skip(&gbc, FFMAX(size - 2, 0));
|
||||
|
||||
while (bytestream2_get_bytes_left(&gbc) > 0) {
|
||||
marker = bytestream2_get_be16(&gbc);
|
||||
|
||||
switch(marker) {
|
||||
case JPEGXS_MARKER_CDT:
|
||||
size = bytestream2_get_be16(&gbc);
|
||||
init_get_bits8(&gb, gbc.buffer, FFMIN(FFMAX(size - 2, 0), bytestream2_get_bytes_left(&gbc)));
|
||||
|
||||
for (int i = 0; i < components; i++) {
|
||||
bpc[i] = get_bits(&gb, 8);
|
||||
if (i && bpc[i] != bpc[i-1])
|
||||
return 0;
|
||||
|
||||
log2_chroma_w[i] = get_bits(&gb, 4);
|
||||
log2_chroma_h[i] = get_bits(&gb, 4);
|
||||
|
||||
if (log2_chroma_h[i] > log2_chroma_w[i])
|
||||
return 0;
|
||||
if (i == 2 && (log2_chroma_h[2] != log2_chroma_h[1] ||
|
||||
log2_chroma_w[2] != log2_chroma_w[1]))
|
||||
return 0;
|
||||
}
|
||||
|
||||
switch (bpc[0]) {
|
||||
case 8:
|
||||
if (components == 1) s->format = AV_PIX_FMT_GRAY8;
|
||||
else if (log2_chroma_w[1] == 1 && log2_chroma_h[1] == 1) s->format = AV_PIX_FMT_YUV444P;
|
||||
else if (log2_chroma_w[1] == 2 && log2_chroma_h[1] == 1) s->format = AV_PIX_FMT_YUV422P;
|
||||
else s->format = AV_PIX_FMT_YUV420P;
|
||||
break;
|
||||
case 10:
|
||||
if (components == 1) s->format = AV_PIX_FMT_GRAY10;
|
||||
else if (log2_chroma_w[1] == 1 && log2_chroma_h[1] == 1) s->format = AV_PIX_FMT_YUV444P10;
|
||||
else if (log2_chroma_w[1] == 2 && log2_chroma_h[1] == 1) s->format = AV_PIX_FMT_YUV422P10;
|
||||
else s->format = AV_PIX_FMT_YUV420P10;
|
||||
break;
|
||||
case 12:
|
||||
if (components == 1) s->format = AV_PIX_FMT_GRAY12;
|
||||
else if (log2_chroma_w[1] == 1 && log2_chroma_h[1] == 1) s->format = AV_PIX_FMT_YUV444P12;
|
||||
else if (log2_chroma_w[1] == 2 && log2_chroma_h[1] == 1) s->format = AV_PIX_FMT_YUV422P12;
|
||||
else s->format = AV_PIX_FMT_YUV420P12;
|
||||
break;
|
||||
case 14:
|
||||
if (components == 1) s->format = AV_PIX_FMT_GRAY14;
|
||||
else if (log2_chroma_w[1] == 1 && log2_chroma_h[1] == 1) s->format = AV_PIX_FMT_YUV444P14;
|
||||
else if (log2_chroma_w[1] == 2 && log2_chroma_h[1] == 1) s->format = AV_PIX_FMT_YUV422P14;
|
||||
else s->format = AV_PIX_FMT_YUV420P14;
|
||||
break;
|
||||
default:
|
||||
s->format = AV_PIX_FMT_NONE;
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
default:
|
||||
size = bytestream2_get_be16(&gbc);
|
||||
bytestream2_skip(&gbc, FFMAX(size - 2, 0));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int jpegxsvideo_parse(AVCodecParserContext *s,
|
||||
AVCodecContext *avctx,
|
||||
const uint8_t **poutbuf, int *poutbuf_size,
|
||||
const uint8_t *buf, int buf_size)
|
||||
{
|
||||
ParseContext *pc = s->priv_data;
|
||||
int next;
|
||||
|
||||
next = jpegxs_find_frame_end(pc, buf, buf_size);
|
||||
|
||||
if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
|
||||
*poutbuf = NULL;
|
||||
*poutbuf_size = 0;
|
||||
return buf_size;
|
||||
}
|
||||
|
||||
jpegxs_parse_frame(s, avctx, buf, buf_size);
|
||||
|
||||
*poutbuf = buf;
|
||||
*poutbuf_size = buf_size;
|
||||
return next;
|
||||
}
|
||||
|
||||
const FFCodecParser ff_jpegxs_parser = {
|
||||
PARSER_CODEC_LIST(AV_CODEC_ID_JPEGXS),
|
||||
.priv_data_size = sizeof(ParseContext),
|
||||
.parse = jpegxsvideo_parse,
|
||||
.close = ff_parse_close,
|
||||
};
|
||||
@@ -77,6 +77,7 @@ extern const FFCodecParser ff_hdr_parser;
|
||||
extern const FFCodecParser ff_ipu_parser;
|
||||
extern const FFCodecParser ff_jpeg2000_parser;
|
||||
extern const FFCodecParser ff_jpegxl_parser;
|
||||
extern const FFCodecParser ff_jpegxs_parser;
|
||||
extern const FFCodecParser ff_misc4_parser;
|
||||
extern const FFCodecParser ff_mjpeg_parser;
|
||||
extern const FFCodecParser ff_mlp_parser;
|
||||
|
||||
Reference in New Issue
Block a user