Commit a51540d8 authored by Paul B Mahol's avatar Paul B Mahol

lavc: do not use av_pix_fmt_descriptors directly

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 27ccc82e
...@@ -230,6 +230,7 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -230,6 +230,7 @@ static int decode_frame(AVCodecContext *avctx,
unsigned int buf_size = avpkt->size; unsigned int buf_size = avpkt->size;
const uint8_t *buf_end = buf + buf_size; const uint8_t *buf_end = buf + buf_size;
const AVPixFmtDescriptor *desc;;
EXRContext *const s = avctx->priv_data; EXRContext *const s = avctx->priv_data;
AVFrame *picture = data; AVFrame *picture = data;
AVFrame *const p = &s->picture; AVFrame *const p = &s->picture;
...@@ -494,9 +495,10 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -494,9 +495,10 @@ static int decode_frame(AVCodecContext *avctx,
avcodec_set_dimensions(avctx, w, h); avcodec_set_dimensions(avctx, w, h);
} }
bxmin = xmin * 2 * av_pix_fmt_descriptors[avctx->pix_fmt].nb_components; desc = av_pix_fmt_desc_get(avctx->pix_fmt);
axmax = (avctx->width - (xmax + 1)) * 2 * av_pix_fmt_descriptors[avctx->pix_fmt].nb_components; bxmin = xmin * 2 * desc->nb_components;
out_line_size = avctx->width * 2 * av_pix_fmt_descriptors[avctx->pix_fmt].nb_components; axmax = (avctx->width - (xmax + 1)) * 2 * desc->nb_components;
out_line_size = avctx->width * 2 * desc->nb_components;
scan_line_size = xdelta * current_channel_offset; scan_line_size = xdelta * current_channel_offset;
uncompressed_size = scan_line_size * scan_lines_per_block; uncompressed_size = scan_line_size * scan_lines_per_block;
...@@ -590,7 +592,7 @@ static int decode_frame(AVCodecContext *avctx, ...@@ -590,7 +592,7 @@ static int decode_frame(AVCodecContext *avctx,
// Zero out the start if xmin is not 0 // Zero out the start if xmin is not 0
memset(ptr_x, 0, bxmin); memset(ptr_x, 0, bxmin);
ptr_x += xmin * av_pix_fmt_descriptors[avctx->pix_fmt].nb_components; ptr_x += xmin * desc->nb_components;
if (s->bits_per_color_id == 2) { if (s->bits_per_color_id == 2) {
// 32-bit // 32-bit
for (x = 0; x < xdelta; x++) { for (x = 0; x < xdelta; x++) {
......
...@@ -916,6 +916,7 @@ static int sort_stt(FFV1Context *s, uint8_t stt[256]){ ...@@ -916,6 +916,7 @@ static int sort_stt(FFV1Context *s, uint8_t stt[256]){
static av_cold int encode_init(AVCodecContext *avctx) static av_cold int encode_init(AVCodecContext *avctx)
{ {
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
FFV1Context *s = avctx->priv_data; FFV1Context *s = avctx->priv_data;
int i, j, k, m; int i, j, k, m;
...@@ -983,7 +984,7 @@ static av_cold int encode_init(AVCodecContext *avctx) ...@@ -983,7 +984,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
case AV_PIX_FMT_YUV420P: case AV_PIX_FMT_YUV420P:
case AV_PIX_FMT_YUV411P: case AV_PIX_FMT_YUV411P:
case AV_PIX_FMT_YUV410P: case AV_PIX_FMT_YUV410P:
s->chroma_planes= av_pix_fmt_descriptors[avctx->pix_fmt].nb_components < 3 ? 0 : 1; s->chroma_planes= desc->nb_components < 3 ? 0 : 1;
s->colorspace= 0; s->colorspace= 0;
break; break;
case AV_PIX_FMT_YUVA444P: case AV_PIX_FMT_YUVA444P:
......
...@@ -519,7 +519,8 @@ static int decode_frame_ilbm(AVCodecContext *avctx, ...@@ -519,7 +519,8 @@ static int decode_frame_ilbm(AVCodecContext *avctx,
} }
} }
} else if (avctx->codec_tag == MKTAG('D','E','E','P')) { } else if (avctx->codec_tag == MKTAG('D','E','E','P')) {
int raw_width = avctx->width * (av_get_bits_per_pixel(&av_pix_fmt_descriptors[avctx->pix_fmt]) >> 3); const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
int raw_width = avctx->width * (av_get_bits_per_pixel(desc) >> 3);
int x; int x;
for(y = 0; y < avctx->height && buf < buf_end; y++ ) { for(y = 0; y < avctx->height && buf < buf_end; y++ ) {
uint8_t *row = &s->frame.data[0][y * s->frame.linesize[0]]; uint8_t *row = &s->frame.data[0][y * s->frame.linesize[0]];
......
...@@ -101,7 +101,7 @@ static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt, ...@@ -101,7 +101,7 @@ static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
out = pkt->data + 18; /* skip past the header we write */ out = pkt->data + 18; /* skip past the header we write */
avctx->bits_per_coded_sample = av_get_bits_per_pixel(&av_pix_fmt_descriptors[avctx->pix_fmt]); avctx->bits_per_coded_sample = av_get_bits_per_pixel(av_pix_fmt_desc_get(avctx->pix_fmt));
switch(avctx->pix_fmt) { switch(avctx->pix_fmt) {
case AV_PIX_FMT_PAL8: { case AV_PIX_FMT_PAL8: {
int pal_bpp = 24; /* Only write 32bit palette if there is transparency information */ int pal_bpp = 24; /* Only write 32bit palette if there is transparency information */
......
...@@ -239,6 +239,7 @@ static av_cold int encode_init(AVCodecContext *avctx) ...@@ -239,6 +239,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
static int encode_frame(AVCodecContext * avctx, AVPacket *pkt, static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
const AVFrame *pict, int *got_packet) const AVFrame *pict, int *got_packet)
{ {
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
TiffEncoderContext *s = avctx->priv_data; TiffEncoderContext *s = avctx->priv_data;
AVFrame *const p = &s->picture; AVFrame *const p = &s->picture;
int i; int i;
...@@ -260,8 +261,8 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt, ...@@ -260,8 +261,8 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
s->subsampling[1] = 1; s->subsampling[1] = 1;
avctx->bits_per_coded_sample = avctx->bits_per_coded_sample =
s->bpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[avctx->pix_fmt]); s->bpp = av_get_bits_per_pixel(desc);
s->bpp_tab_size = av_pix_fmt_descriptors[avctx->pix_fmt].nb_components; s->bpp_tab_size = desc->nb_components;
switch (avctx->pix_fmt) { switch (avctx->pix_fmt) {
case AV_PIX_FMT_RGBA64LE: case AV_PIX_FMT_RGBA64LE:
...@@ -305,7 +306,7 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt, ...@@ -305,7 +306,7 @@ static int encode_frame(AVCodecContext * avctx, AVPacket *pkt,
} }
for (i = 0; i < s->bpp_tab_size; i++) for (i = 0; i < s->bpp_tab_size; i++)
bpp_tab[i] = av_pix_fmt_descriptors[avctx->pix_fmt].comp[i].depth_minus1 + 1; bpp_tab[i] = desc->comp[i].depth_minus1 + 1;
if (s->compr == TIFF_DEFLATE || s->compr == TIFF_ADOBE_DEFLATE || s->compr == TIFF_LZW) if (s->compr == TIFF_DEFLATE || s->compr == TIFF_ADOBE_DEFLATE || s->compr == TIFF_LZW)
//best choose for DEFLATE //best choose for DEFLATE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment