You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
yuv pixel formats support in openjpeg decoder + 10bit support
Signed-off-by: Alex Zhukov <zhukov.alex@gmail.com> Reviewed-by: Jean First <jeanfirst@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
0a4f02117b
commit
eb511ef636
@@ -25,6 +25,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "libavutil/imgutils.h"
|
#include "libavutil/imgutils.h"
|
||||||
|
#include "libavutil/pixfmt.h"
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
#include "libavutil/intreadwrite.h"
|
#include "libavutil/intreadwrite.h"
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
@@ -39,14 +40,106 @@ typedef struct {
|
|||||||
AVFrame image;
|
AVFrame image;
|
||||||
} LibOpenJPEGContext;
|
} LibOpenJPEGContext;
|
||||||
|
|
||||||
static int check_image_attributes(opj_image_t *image)
|
static enum PixelFormat check_image_attributes(AVCodecContext *avctx, opj_image_t *image)
|
||||||
{
|
{
|
||||||
return image->comps[0].dx == image->comps[1].dx &&
|
opj_image_comp_t c0 = image->comps[0];
|
||||||
image->comps[1].dx == image->comps[2].dx &&
|
opj_image_comp_t c1 = image->comps[1];
|
||||||
image->comps[0].dy == image->comps[1].dy &&
|
opj_image_comp_t c2 = image->comps[2];
|
||||||
image->comps[1].dy == image->comps[2].dy &&
|
int compRatio = 0;
|
||||||
image->comps[0].prec == image->comps[1].prec &&
|
compRatio |= c0.dx << 15 | c0.dy << 12;
|
||||||
image->comps[1].prec == image->comps[2].prec;
|
compRatio |= c1.dx << 9 | c1.dy << 6;
|
||||||
|
compRatio |= c2.dx << 3 | c2.dy;
|
||||||
|
|
||||||
|
switch (compRatio) {
|
||||||
|
case 0111111: goto libopenjpeg_yuv444_rgb;
|
||||||
|
case 0112121: goto libopenjpeg_yuv422;
|
||||||
|
case 0112222: goto libopenjpeg_yuv420;
|
||||||
|
default: return PIX_FMT_RGB24;
|
||||||
|
}
|
||||||
|
|
||||||
|
libopenjpeg_yuv420:
|
||||||
|
switch (c0.prec) {
|
||||||
|
case 8: return PIX_FMT_YUV420P;
|
||||||
|
case 9: return PIX_FMT_YUV420P9;
|
||||||
|
case 10: return PIX_FMT_YUV420P10;
|
||||||
|
case 16: return PIX_FMT_YUV420P16;
|
||||||
|
}
|
||||||
|
|
||||||
|
libopenjpeg_yuv422:
|
||||||
|
switch (c0.prec) {
|
||||||
|
case 8: return PIX_FMT_YUV422P;
|
||||||
|
case 9: return PIX_FMT_YUV422P9;
|
||||||
|
case 10: return PIX_FMT_YUV422P10;
|
||||||
|
case 16: return PIX_FMT_YUV422P16;
|
||||||
|
}
|
||||||
|
|
||||||
|
libopenjpeg_yuv444_rgb:
|
||||||
|
switch (c0.prec) {
|
||||||
|
case 8: return PIX_FMT_RGB24;
|
||||||
|
case 9: return PIX_FMT_YUV444P9;
|
||||||
|
case 10: return PIX_FMT_YUV444P10;
|
||||||
|
case 16: return PIX_FMT_YUV444P16;
|
||||||
|
}
|
||||||
|
return PIX_FMT_RGB24;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int libopenjpeg_ispacked(enum PixelFormat pix_fmt) {
|
||||||
|
int i, component_plane;
|
||||||
|
component_plane = av_pix_fmt_descriptors[pix_fmt].comp[0].plane;
|
||||||
|
for(i = 1; i < av_pix_fmt_descriptors[pix_fmt].nb_components; i++) {
|
||||||
|
if (component_plane != av_pix_fmt_descriptors[pix_fmt].comp[i].plane)
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void libopenjpeg_copy_to_packed8(AVFrame *picture, opj_image_t *image) {
|
||||||
|
uint8_t *img_ptr;
|
||||||
|
int index, x, y, c;
|
||||||
|
for(y = 0; y < picture->height; y++) {
|
||||||
|
index = y*picture->width;
|
||||||
|
img_ptr = picture->data[0] + y*picture->linesize[0];
|
||||||
|
for(x = 0; x < picture->width; x++, index++) {
|
||||||
|
for(c = 0; c < image->numcomps; c++) {
|
||||||
|
*img_ptr++ = image->comps[c].data[index];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void libopenjpeg_copyto8(AVFrame *picture, opj_image_t *image) {
|
||||||
|
int *comp_data;
|
||||||
|
uint8_t *img_ptr;
|
||||||
|
int index, x, y;
|
||||||
|
|
||||||
|
for(index = 0; index < image->numcomps; index++) {
|
||||||
|
comp_data = image->comps[index].data;
|
||||||
|
img_ptr = picture->data[index];
|
||||||
|
for(y = 0; y < image->comps[index].h; y++) {
|
||||||
|
for(x = 0; x < image->comps[index].w; x++) {
|
||||||
|
*img_ptr = (uint8_t) *comp_data;
|
||||||
|
img_ptr++;
|
||||||
|
comp_data++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void libopenjpeg_copyto16(AVFrame *picture, opj_image_t *image) {
|
||||||
|
int *comp_data;
|
||||||
|
uint16_t *img_ptr;
|
||||||
|
int index, x, y;
|
||||||
|
for(index = 0; index < image->numcomps; index++) {
|
||||||
|
comp_data = image->comps[index].data;
|
||||||
|
img_ptr = (uint16_t*) picture->data[index];
|
||||||
|
for(y = 0; y < image->comps[index].h; y++) {
|
||||||
|
for(x = 0; x < image->comps[index].w; x++) {
|
||||||
|
*img_ptr = *comp_data;
|
||||||
|
img_ptr++;
|
||||||
|
comp_data++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static av_cold int libopenjpeg_decode_init(AVCodecContext *avctx)
|
static av_cold int libopenjpeg_decode_init(AVCodecContext *avctx)
|
||||||
@@ -78,10 +171,9 @@ static int libopenjpeg_decode_frame(AVCodecContext *avctx,
|
|||||||
opj_dinfo_t *dec;
|
opj_dinfo_t *dec;
|
||||||
opj_cio_t *stream;
|
opj_cio_t *stream;
|
||||||
opj_image_t *image;
|
opj_image_t *image;
|
||||||
int width, height, has_alpha = 0, ret = -1;
|
int width, height, ret = -1;
|
||||||
int x, y, index;
|
int pixel_size = 0;
|
||||||
uint8_t *img_ptr;
|
int ispacked = 0;
|
||||||
int adjust[4];
|
|
||||||
|
|
||||||
*data_size = 0;
|
*data_size = 0;
|
||||||
|
|
||||||
@@ -130,22 +222,15 @@ static int libopenjpeg_decode_frame(AVCodecContext *avctx,
|
|||||||
}
|
}
|
||||||
avcodec_set_dimensions(avctx, width, height);
|
avcodec_set_dimensions(avctx, width, height);
|
||||||
|
|
||||||
switch(image->numcomps)
|
switch (image->numcomps) {
|
||||||
{
|
case 1: avctx->pix_fmt = PIX_FMT_GRAY8;
|
||||||
case 1: avctx->pix_fmt = PIX_FMT_GRAY8;
|
break;
|
||||||
break;
|
case 3: avctx->pix_fmt = check_image_attributes(avctx, image);
|
||||||
case 3: if(check_image_attributes(image)) {
|
break;
|
||||||
avctx->pix_fmt = PIX_FMT_RGB24;
|
case 4: avctx->pix_fmt = PIX_FMT_RGBA;
|
||||||
} else {
|
break;
|
||||||
avctx->pix_fmt = PIX_FMT_GRAY8;
|
default: av_log(avctx, AV_LOG_ERROR, "%d components unsupported.\n", image->numcomps);
|
||||||
av_log(avctx, AV_LOG_ERROR, "Only first component will be used.\n");
|
goto done;
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 4: has_alpha = 1;
|
|
||||||
avctx->pix_fmt = PIX_FMT_RGBA;
|
|
||||||
break;
|
|
||||||
default: av_log(avctx, AV_LOG_ERROR, "%d components unsupported.\n", image->numcomps);
|
|
||||||
goto done;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(picture->data[0])
|
if(picture->data[0])
|
||||||
@@ -173,22 +258,28 @@ static int libopenjpeg_decode_frame(AVCodecContext *avctx,
|
|||||||
image = opj_decode_with_info(dec, stream, NULL);
|
image = opj_decode_with_info(dec, stream, NULL);
|
||||||
opj_cio_close(stream);
|
opj_cio_close(stream);
|
||||||
|
|
||||||
for(x = 0; x < image->numcomps; x++) {
|
pixel_size = av_pix_fmt_descriptors[avctx->pix_fmt].comp[0].step_minus1 + 1;
|
||||||
adjust[x] = FFMAX(image->comps[x].prec - 8, 0);
|
ispacked = libopenjpeg_ispacked(avctx->pix_fmt);
|
||||||
}
|
|
||||||
|
|
||||||
for(y = 0; y < avctx->height; y++) {
|
switch (pixel_size) {
|
||||||
index = y*avctx->width;
|
case 1:
|
||||||
img_ptr = picture->data[0] + y*picture->linesize[0];
|
if (ispacked) {
|
||||||
for(x = 0; x < avctx->width; x++, index++) {
|
libopenjpeg_copy_to_packed8(picture, image);
|
||||||
*img_ptr++ = image->comps[0].data[index] >> adjust[0];
|
} else {
|
||||||
if(image->numcomps > 2 && check_image_attributes(image)) {
|
libopenjpeg_copyto8(picture, image);
|
||||||
*img_ptr++ = image->comps[1].data[index] >> adjust[1];
|
|
||||||
*img_ptr++ = image->comps[2].data[index] >> adjust[2];
|
|
||||||
if(has_alpha)
|
|
||||||
*img_ptr++ = image->comps[3].data[index] >> adjust[3];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
libopenjpeg_copyto16(picture, image);
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
if (ispacked) {
|
||||||
|
libopenjpeg_copy_to_packed8(picture, image);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
av_log(avctx, AV_LOG_ERROR, "unsupported pixel size %d\n", pixel_size);
|
||||||
|
goto done;
|
||||||
}
|
}
|
||||||
|
|
||||||
*output = ctx->image;
|
*output = ctx->image;
|
||||||
|
Reference in New Issue
Block a user