| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Quicktime Planar RGB (8BPS) Video Decoder | 
					
						
							|  |  |  |  * Copyright (C) 2003 Roberto Togni | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  |  * 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 | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							| 
									
										
										
										
											2006-01-12 22:43:26 +00:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-04-20 14:45:34 +00:00
										 |  |  |  * @file | 
					
						
							| 
									
										
										
										
											2008-06-07 13:14:49 +00:00
										 |  |  |  * QT 8BPS Video Decoder by Roberto Togni | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  |  * For more information about the 8BPS format, visit: | 
					
						
							|  |  |  |  *   http://www.pcisys.net/~melanson/codecs/
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Supports: PAL8 (RGB 8bpp, paletted) | 
					
						
							| 
									
										
										
										
											2007-02-07 01:48:09 +00:00
										 |  |  |  *         : BGR24 (RGB 24bpp) (can also output it as RGB32) | 
					
						
							| 
									
										
										
										
											2011-12-06 23:06:27 +01:00
										 |  |  |  *         : RGB32 (RGB 32bpp, 4th plane is alpha) | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-11 22:19:48 +00:00
										 |  |  | #include "libavutil/intreadwrite.h"
 | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | #include "avcodec.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 22:28:43 +00:00
										 |  |  | static const enum PixelFormat pixfmt_rgb24[] = {PIX_FMT_BGR24, PIX_FMT_RGB32, PIX_FMT_NONE}; | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Decoder context | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | typedef struct EightBpsContext { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         AVCodecContext *avctx; | 
					
						
							|  |  |  |         AVFrame pic; | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         unsigned char planes; | 
					
						
							|  |  |  |         unsigned char planemap[4]; | 
					
						
							| 
									
										
										
										
											2011-04-09 15:49:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         uint32_t pal[256]; | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | } EightBpsContext; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Decode a frame | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-04-07 15:59:50 +00:00
										 |  |  | static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-04-07 15:59:50 +00:00
										 |  |  |         const uint8_t *buf = avpkt->data; | 
					
						
							|  |  |  |         int buf_size = avpkt->size; | 
					
						
							| 
									
										
										
										
											2007-04-08 20:24:16 +00:00
										 |  |  |         EightBpsContext * const c = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2008-02-01 15:11:24 +00:00
										 |  |  |         const unsigned char *encoded = buf; | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         unsigned char *pixptr, *pixptr_end; | 
					
						
							|  |  |  |         unsigned int height = avctx->height; // Real image height
 | 
					
						
							|  |  |  |         unsigned int dlen, p, row; | 
					
						
							| 
									
										
										
										
											2008-02-01 15:11:24 +00:00
										 |  |  |         const unsigned char *lp, *dp; | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         unsigned char count; | 
					
						
							|  |  |  |         unsigned int planes = c->planes; | 
					
						
							|  |  |  |         unsigned char *planemap = c->planemap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if(c->pic.data[0]) | 
					
						
							|  |  |  |                 avctx->release_buffer(avctx, &c->pic); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         c->pic.reference = 0; | 
					
						
							|  |  |  |         c->pic.buffer_hints = FF_BUFFER_HINTS_VALID; | 
					
						
							|  |  |  |         if(avctx->get_buffer(avctx, &c->pic) < 0){ | 
					
						
							|  |  |  |                 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); | 
					
						
							|  |  |  |                 return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Set data pointer after line lengths */ | 
					
						
							|  |  |  |         dp = encoded + planes * (height << 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (p = 0; p < planes; p++) { | 
					
						
							|  |  |  |                 /* Lines length pointer for this plane */ | 
					
						
							|  |  |  |                 lp = encoded + p * (height << 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 /* Decode a plane */ | 
					
						
							|  |  |  |                 for(row = 0; row < height; row++) { | 
					
						
							|  |  |  |                         pixptr = c->pic.data[0] + row * c->pic.linesize[0] + planemap[p]; | 
					
						
							|  |  |  |                         pixptr_end = pixptr + c->pic.linesize[0]; | 
					
						
							| 
									
										
										
										
											2010-07-10 22:12:30 +00:00
										 |  |  |                         dlen = av_be2ne16(*(const unsigned short *)(lp+row*2)); | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                         /* Decode a row of this plane */ | 
					
						
							|  |  |  |                         while(dlen > 0) { | 
					
						
							|  |  |  |                                 if(dp + 1 >= buf+buf_size) return -1; | 
					
						
							|  |  |  |                                 if ((count = *dp++) <= 127) { | 
					
						
							|  |  |  |                                         count++; | 
					
						
							|  |  |  |                                         dlen -= count + 1; | 
					
						
							| 
									
										
										
										
											2011-12-06 23:06:27 +01:00
										 |  |  |                                         if (pixptr + count * planes > pixptr_end) | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                                             break; | 
					
						
							|  |  |  |                                         if(dp + count > buf+buf_size) return -1; | 
					
						
							|  |  |  |                                         while(count--) { | 
					
						
							|  |  |  |                                                 *pixptr = *dp++; | 
					
						
							| 
									
										
										
										
											2011-12-06 23:06:27 +01:00
										 |  |  |                                                 pixptr += planes; | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                                         } | 
					
						
							|  |  |  |                                 } else { | 
					
						
							|  |  |  |                                         count = 257 - count; | 
					
						
							| 
									
										
										
										
											2011-12-06 23:06:27 +01:00
										 |  |  |                                         if (pixptr + count * planes > pixptr_end) | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                                             break; | 
					
						
							|  |  |  |                                         while(count--) { | 
					
						
							|  |  |  |                                                 *pixptr = *dp; | 
					
						
							| 
									
										
										
										
											2011-12-06 23:06:27 +01:00
										 |  |  |                                                 pixptr += planes; | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                                         } | 
					
						
							|  |  |  |                                         dp++; | 
					
						
							|  |  |  |                                         dlen -= 2; | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-09 15:49:51 +02:00
										 |  |  |         if (avctx->bits_per_coded_sample <= 8) { | 
					
						
							|  |  |  |                 const uint8_t *pal = av_packet_get_side_data(avpkt, | 
					
						
							|  |  |  |                                                              AV_PKT_DATA_PALETTE, | 
					
						
							|  |  |  |                                                              NULL); | 
					
						
							|  |  |  |                 if (pal) { | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                         c->pic.palette_has_changed = 1; | 
					
						
							| 
									
										
										
										
											2011-04-09 15:49:51 +02:00
										 |  |  |                         memcpy(c->pal, pal, AVPALETTE_SIZE); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 memcpy (c->pic.data[1], c->pal, AVPALETTE_SIZE); | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         *data_size = sizeof(AVFrame); | 
					
						
							|  |  |  |         *(AVFrame*)data = c->pic; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* always report that the buffer was completely consumed */ | 
					
						
							|  |  |  |         return buf_size; | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Init 8BPS decoder | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-03-21 03:11:20 +00:00
										 |  |  | static av_cold int decode_init(AVCodecContext *avctx) | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-08 20:24:16 +00:00
										 |  |  |         EightBpsContext * const c = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         c->avctx = avctx; | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-02 02:15:15 +02:00
										 |  |  |         avcodec_get_frame_defaults(&c->pic); | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         c->pic.data[0] = NULL; | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-08 14:24:59 +00:00
										 |  |  |         switch (avctx->bits_per_coded_sample) { | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                 case 8: | 
					
						
							|  |  |  |                         avctx->pix_fmt = PIX_FMT_PAL8; | 
					
						
							|  |  |  |                         c->planes = 1; | 
					
						
							|  |  |  |                         c->planemap[0] = 0; // 1st plane is palette indexes
 | 
					
						
							|  |  |  |                         break; | 
					
						
							|  |  |  |                 case 24: | 
					
						
							|  |  |  |                         avctx->pix_fmt = avctx->get_format(avctx, pixfmt_rgb24); | 
					
						
							|  |  |  |                         c->planes = 3; | 
					
						
							|  |  |  |                         c->planemap[0] = 2; // 1st plane is red
 | 
					
						
							|  |  |  |                         c->planemap[1] = 1; // 2nd plane is green
 | 
					
						
							|  |  |  |                         c->planemap[2] = 0; // 3rd plane is blue
 | 
					
						
							|  |  |  |                         break; | 
					
						
							|  |  |  |                 case 32: | 
					
						
							| 
									
										
										
										
											2007-02-07 01:48:09 +00:00
										 |  |  |                         avctx->pix_fmt = PIX_FMT_RGB32; | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                         c->planes = 4; | 
					
						
							| 
									
										
										
										
											2009-07-26 12:20:04 +00:00
										 |  |  | #if HAVE_BIGENDIAN
 | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                         c->planemap[0] = 1; // 1st plane is red
 | 
					
						
							|  |  |  |                         c->planemap[1] = 2; // 2nd plane is green
 | 
					
						
							|  |  |  |                         c->planemap[2] = 3; // 3rd plane is blue
 | 
					
						
							| 
									
										
										
										
											2011-12-06 23:06:27 +01:00
										 |  |  |                         c->planemap[3] = 0; // 4th plane is alpha
 | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                         c->planemap[0] = 2; // 1st plane is red
 | 
					
						
							|  |  |  |                         c->planemap[1] = 1; // 2nd plane is green
 | 
					
						
							|  |  |  |                         c->planemap[2] = 0; // 3rd plane is blue
 | 
					
						
							| 
									
										
										
										
											2011-12-06 23:06:27 +01:00
										 |  |  |                         c->planemap[3] = 3; // 4th plane is alpha
 | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                         break; | 
					
						
							|  |  |  |                 default: | 
					
						
							| 
									
										
										
										
											2008-09-08 14:24:59 +00:00
										 |  |  |                         av_log(avctx, AV_LOG_ERROR, "Error: Unsupported color depth: %u.\n", avctx->bits_per_coded_sample); | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                         return -1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Uninit 8BPS decoder | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-03-21 03:11:20 +00:00
										 |  |  | static av_cold int decode_end(AVCodecContext *avctx) | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-08 20:24:16 +00:00
										 |  |  |         EightBpsContext * const c = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         if (c->pic.data[0]) | 
					
						
							|  |  |  |                 avctx->release_buffer(avctx, &c->pic); | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 21:40:11 +00:00
										 |  |  | AVCodec ff_eightbps_decoder = { | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .name           = "8bps", | 
					
						
							|  |  |  |     .type           = AVMEDIA_TYPE_VIDEO, | 
					
						
							|  |  |  |     .id             = CODEC_ID_8BPS, | 
					
						
							|  |  |  |     .priv_data_size = sizeof(EightBpsContext), | 
					
						
							|  |  |  |     .init           = decode_init, | 
					
						
							|  |  |  |     .close          = decode_end, | 
					
						
							|  |  |  |     .decode         = decode_frame, | 
					
						
							|  |  |  |     .capabilities   = CODEC_CAP_DR1, | 
					
						
							| 
									
										
										
										
											2011-08-03 23:27:50 +02:00
										 |  |  |     .long_name      = NULL_IF_CONFIG_SMALL("QuickTime 8BPS video"), | 
					
						
							| 
									
										
										
										
											2003-11-07 22:39:18 +00:00
										 |  |  | }; |