FFmpeg
Loading...
Searching...
No Matches
8bps.c
Go to the documentation of this file.
1/*
2 * Quicktime Planar RGB (8BPS) Video Decoder
3 * Copyright (C) 2003 Roberto Togni
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22/**
23 * @file
24 * QT 8BPS Video Decoder by Roberto Togni
25 * For more information about the 8BPS format, visit:
26 * http://www.pcisys.net/~melanson/codecs/
27 *
28 * Supports: PAL8 (RGB 8bpp, paletted)
29 * : GBRP (RGB 24bpp)
30 * : GBRAP (RGB 32bpp, 4th plane is alpha)
31 */
32
33#include <string.h>
34
36#include "libavutil/internal.h"
37#include "avcodec.h"
38#include "codec_internal.h"
39#include "decode.h"
40
41typedef struct EightBpsContext {
43
44 uint8_t planes;
45 uint8_t planemap[4];
46
47 uint32_t pal[256];
49
51 int *got_frame, AVPacket *avpkt)
52{
53 const uint8_t *buf = avpkt->data;
54 int buf_size = avpkt->size;
55 EightBpsContext * const c = avctx->priv_data;
56 const uint8_t *encoded = buf;
57 uint8_t *pixptr, *pixptr_end;
58 unsigned int height = avctx->height; // Real image height
59 unsigned int dlen, p, row;
60 const uint8_t *lp, *dp, *ep;
61 uint8_t count;
62 const uint8_t *planemap = c->planemap;
63 unsigned int planes = c->planes;
64 int ret;
65
66 if (buf_size < planes * height * (2 + 2*((avctx->width+128)/129)))
68
69 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
70 return ret;
71
72 ep = encoded + buf_size;
73
74 /* Set data pointer after line lengths */
75 dp = encoded + planes * (height << 1);
76
77 for (p = 0; p < planes; p++) {
78 const int pi = planemap[p];
79 /* Lines length pointer for this plane */
80 lp = encoded + p * (height << 1);
81
82 /* Decode a plane */
83 for (row = 0; row < height; row++) {
84 pixptr = frame->data[pi] + row * frame->linesize[pi];
85 pixptr_end = pixptr + frame->linesize[pi];
86 if (ep - lp < row * 2 + 2)
88 dlen = AV_RB16(lp + row * 2);
89 /* Decode a row of this plane */
90 while (dlen > 0) {
91 if (ep - dp <= 1)
93 if ((count = *dp++) <= 127) {
94 count++;
95 dlen -= count + 1;
96 if (pixptr_end - pixptr < count)
97 break;
98 if (ep - dp < count)
100 memcpy(pixptr, dp, count);
101 pixptr += count;
102 dp += count;
103 } else {
104 count = 257 - count;
105 if (pixptr_end - pixptr < count)
106 break;
107 memset(pixptr, dp[0], count);
108 pixptr += count;
109 dp++;
110 dlen -= 2;
111 }
112 }
113 }
114 }
115
116 if (avctx->bits_per_coded_sample <= 8) {
117 ff_copy_palette(c->pal, avpkt, avctx);
118
119 memcpy(frame->data[1], c->pal, AVPALETTE_SIZE);
120 }
121
122 *got_frame = 1;
123
124 /* always report that the buffer was completely consumed */
125 return buf_size;
126}
127
129{
130 EightBpsContext * const c = avctx->priv_data;
131
132 c->avctx = avctx;
133
134 switch (avctx->bits_per_coded_sample) {
135 case 8:
136 avctx->pix_fmt = AV_PIX_FMT_PAL8;
137 c->planes = 1;
138 c->planemap[0] = 0; // 1st plane is palette indexes
139 break;
140 case 24:
141 avctx->pix_fmt = AV_PIX_FMT_GBRP;
142 c->planes = 3;
143 c->planemap[0] = 2; // 1st plane is red
144 c->planemap[1] = 0; // 2nd plane is green
145 c->planemap[2] = 1; // 3rd plane is blue
146 break;
147 case 32:
148 avctx->pix_fmt = AV_PIX_FMT_GBRAP;
149 c->planes = 4;
150 break;
151 default:
152 av_log(avctx, AV_LOG_ERROR, "Error: Unsupported color depth: %u.\n",
153 avctx->bits_per_coded_sample);
154 return AVERROR_INVALIDDATA;
155 }
156
157 if (avctx->pix_fmt == AV_PIX_FMT_GBRAP) {
158 c->planemap[0] = 2; // 1st plane is red
159 c->planemap[1] = 0; // 2nd plane is green
160 c->planemap[2] = 1; // 3rd plane is blue
161 c->planemap[3] = 3; // 4th plane is alpha
162 }
163 return 0;
164}
165
167 .p.name = "8bps",
168 CODEC_LONG_NAME("QuickTime 8BPS video"),
169 .p.type = AVMEDIA_TYPE_VIDEO,
170 .p.id = AV_CODEC_ID_8BPS,
171 .priv_data_size = sizeof(EightBpsContext),
172 .init = decode_init,
174 .p.capabilities = AV_CODEC_CAP_DR1,
175};
static int decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
Definition 8bps.c:50
static av_cold int decode_init(AVCodecContext *avctx)
Definition 8bps.c:128
const FFCodec ff_eightbps_decoder
Definition 8bps.c:166
Libavcodec external API header.
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition decode.c:1777
int ff_copy_palette(void *dst, const AVPacket *src, void *logctx)
Check whether the side-data of src contains a palette of size AVPALETTE_SIZE; if so,...
Definition decode.c:2321
static AVFrame * frame
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
@ AV_CODEC_ID_8BPS
Definition codec_id.h:98
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
#define AV_RB16(p)
static av_cold int decode_init(AVCodecContext *avctx)
Definition 4xm.c:998
static int decode_frame(AVCodecContext *avctx, AVFrame *picture, int *got_frame, AVPacket *avpkt)
Definition 4xm.c:837
#define av_cold
Definition attributes.h:117
common internal API header
static const struct @257111027162314367033347246032313251342043035002 planes[]
@ AV_PIX_FMT_GBRAP
planar GBRA 4:4:4:4 32bpp
Definition pixfmt.h:212
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
Definition pixfmt.h:84
@ AV_PIX_FMT_GBRP
planar GBR 4:4:4 24bpp
Definition pixfmt.h:165
#define AVPALETTE_SIZE
Definition pixfmt.h:32
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
int width
picture width / height.
Definition avcodec.h:604
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition avcodec.h:1564
void * priv_data
Definition avcodec.h:470
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
int size
Definition packet.h:604
uint8_t * data
Definition packet.h:603
uint8_t planemap[4]
Definition 8bps.c:45
uint32_t pal[256]
Definition 8bps.c:47
uint8_t planes
Definition 8bps.c:44
AVCodecContext * avctx
Definition 8bps.c:42
#define av_log(a,...)
#define height
Definition dsp.h:89
static double c[64]