00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00034 #include <stdio.h>
00035 #include <stdlib.h>
00036
00037 #include "libavutil/intreadwrite.h"
00038 #include "avcodec.h"
00039
00040
00041 static const enum PixelFormat pixfmt_rgb24[] = {PIX_FMT_BGR24, PIX_FMT_RGB32, PIX_FMT_NONE};
00042
00043
00044
00045
00046 typedef struct EightBpsContext {
00047
00048 AVCodecContext *avctx;
00049 AVFrame pic;
00050
00051 unsigned char planes;
00052 unsigned char planemap[4];
00053
00054 uint32_t pal[256];
00055 } EightBpsContext;
00056
00057
00058
00059
00060
00061
00062
00063 static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
00064 {
00065 const uint8_t *buf = avpkt->data;
00066 int buf_size = avpkt->size;
00067 EightBpsContext * const c = avctx->priv_data;
00068 const unsigned char *encoded = buf;
00069 unsigned char *pixptr, *pixptr_end;
00070 unsigned int height = avctx->height;
00071 unsigned int dlen, p, row;
00072 const unsigned char *lp, *dp;
00073 unsigned char count;
00074 unsigned int px_inc;
00075 unsigned int planes = c->planes;
00076 unsigned char *planemap = c->planemap;
00077
00078 if(c->pic.data[0])
00079 avctx->release_buffer(avctx, &c->pic);
00080
00081 c->pic.reference = 0;
00082 c->pic.buffer_hints = FF_BUFFER_HINTS_VALID;
00083 if(avctx->get_buffer(avctx, &c->pic) < 0){
00084 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
00085 return -1;
00086 }
00087
00088
00089 dp = encoded + planes * (height << 1);
00090
00091
00092 if (planes == 4)
00093 planes--;
00094
00095 px_inc = planes + (avctx->pix_fmt == PIX_FMT_RGB32);
00096
00097 for (p = 0; p < planes; p++) {
00098
00099 lp = encoded + p * (height << 1);
00100
00101
00102 for(row = 0; row < height; row++) {
00103 pixptr = c->pic.data[0] + row * c->pic.linesize[0] + planemap[p];
00104 pixptr_end = pixptr + c->pic.linesize[0];
00105 dlen = av_be2ne16(*(const unsigned short *)(lp+row*2));
00106
00107 while(dlen > 0) {
00108 if(dp + 1 >= buf+buf_size) return -1;
00109 if ((count = *dp++) <= 127) {
00110 count++;
00111 dlen -= count + 1;
00112 if (pixptr + count * px_inc > pixptr_end)
00113 break;
00114 if(dp + count > buf+buf_size) return -1;
00115 while(count--) {
00116 *pixptr = *dp++;
00117 pixptr += px_inc;
00118 }
00119 } else {
00120 count = 257 - count;
00121 if (pixptr + count * px_inc > pixptr_end)
00122 break;
00123 while(count--) {
00124 *pixptr = *dp;
00125 pixptr += px_inc;
00126 }
00127 dp++;
00128 dlen -= 2;
00129 }
00130 }
00131 }
00132 }
00133
00134 if (avctx->bits_per_coded_sample <= 8) {
00135 const uint8_t *pal = av_packet_get_side_data(avpkt,
00136 AV_PKT_DATA_PALETTE,
00137 NULL);
00138 if (pal) {
00139 c->pic.palette_has_changed = 1;
00140 memcpy(c->pal, pal, AVPALETTE_SIZE);
00141 }
00142
00143 memcpy (c->pic.data[1], c->pal, AVPALETTE_SIZE);
00144 }
00145
00146 *data_size = sizeof(AVFrame);
00147 *(AVFrame*)data = c->pic;
00148
00149
00150 return buf_size;
00151 }
00152
00153
00154
00155
00156
00157
00158
00159 static av_cold int decode_init(AVCodecContext *avctx)
00160 {
00161 EightBpsContext * const c = avctx->priv_data;
00162
00163 c->avctx = avctx;
00164
00165 avcodec_get_frame_defaults(&c->pic);
00166 c->pic.data[0] = NULL;
00167
00168 switch (avctx->bits_per_coded_sample) {
00169 case 8:
00170 avctx->pix_fmt = PIX_FMT_PAL8;
00171 c->planes = 1;
00172 c->planemap[0] = 0;
00173 break;
00174 case 24:
00175 avctx->pix_fmt = avctx->get_format(avctx, pixfmt_rgb24);
00176 c->planes = 3;
00177 c->planemap[0] = 2;
00178 c->planemap[1] = 1;
00179 c->planemap[2] = 0;
00180 break;
00181 case 32:
00182 avctx->pix_fmt = PIX_FMT_RGB32;
00183 c->planes = 4;
00184 #if HAVE_BIGENDIAN
00185 c->planemap[0] = 1;
00186 c->planemap[1] = 2;
00187 c->planemap[2] = 3;
00188 c->planemap[3] = 0;
00189 #else
00190 c->planemap[0] = 2;
00191 c->planemap[1] = 1;
00192 c->planemap[2] = 0;
00193 c->planemap[3] = 3;
00194 #endif
00195 break;
00196 default:
00197 av_log(avctx, AV_LOG_ERROR, "Error: Unsupported color depth: %u.\n", avctx->bits_per_coded_sample);
00198 return -1;
00199 }
00200
00201 return 0;
00202 }
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212 static av_cold int decode_end(AVCodecContext *avctx)
00213 {
00214 EightBpsContext * const c = avctx->priv_data;
00215
00216 if (c->pic.data[0])
00217 avctx->release_buffer(avctx, &c->pic);
00218
00219 return 0;
00220 }
00221
00222
00223
00224 AVCodec ff_eightbps_decoder = {
00225 "8bps",
00226 AVMEDIA_TYPE_VIDEO,
00227 CODEC_ID_8BPS,
00228 sizeof(EightBpsContext),
00229 decode_init,
00230 NULL,
00231 decode_end,
00232 decode_frame,
00233 CODEC_CAP_DR1,
00234 .long_name = NULL_IF_CONFIG_SMALL("QuickTime 8BPS video"),
00235 };