| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Quicktime Graphics (SMC) Video Decoder | 
					
						
							|  |  |  |  * Copyright (C) 2003 the ffmpeg project | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											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-10 03:14:04 +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-10 03:14:04 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +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-10 03:14:04 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-04-20 14:45:34 +00:00
										 |  |  |  * @file | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |  * QT SMC Video Decoder by Mike Melanson (melanson@pcisys.net) | 
					
						
							|  |  |  |  * For more information about the SMC format, visit: | 
					
						
							|  |  |  |  *   http://www.pcisys.net/~melanson/codecs/
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The SMC decoder outputs PAL8 colorspace data. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-11 22:19:48 +00:00
										 |  |  | #include "libavutil/intreadwrite.h"
 | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | #include "avcodec.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define CPAIR 2
 | 
					
						
							|  |  |  | #define CQUAD 4
 | 
					
						
							|  |  |  | #define COCTET 8
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define COLORS_PER_TABLE 256
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct SmcContext { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     AVCodecContext *avctx; | 
					
						
							|  |  |  |     AVFrame frame; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-01 14:10:56 +00:00
										 |  |  |     const unsigned char *buf; | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |     int size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* SMC color tables */ | 
					
						
							|  |  |  |     unsigned char color_pairs[COLORS_PER_TABLE * CPAIR]; | 
					
						
							|  |  |  |     unsigned char color_quads[COLORS_PER_TABLE * CQUAD]; | 
					
						
							|  |  |  |     unsigned char color_octets[COLORS_PER_TABLE * COCTET]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-09 15:49:51 +02:00
										 |  |  |     uint32_t pal[256]; | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | } SmcContext; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define GET_BLOCK_COUNT() \
 | 
					
						
							|  |  |  |   (opcode & 0x10) ? (1 + s->buf[stream_ptr++]) : 1 + (opcode & 0x0F); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ADVANCE_BLOCK() \
 | 
					
						
							|  |  |  | { \ | 
					
						
							|  |  |  |     pixel_ptr += 4; \ | 
					
						
							|  |  |  |     if (pixel_ptr >= width) \ | 
					
						
							|  |  |  |     { \ | 
					
						
							|  |  |  |         pixel_ptr = 0; \ | 
					
						
							|  |  |  |         row_ptr += stride * 4; \ | 
					
						
							|  |  |  |     } \ | 
					
						
							|  |  |  |     total_blocks--; \ | 
					
						
							|  |  |  |     if (total_blocks < 0) \ | 
					
						
							|  |  |  |     { \ | 
					
						
							| 
									
										
										
										
											2004-04-07 13:26:47 +00:00
										 |  |  |         av_log(s->avctx, AV_LOG_INFO, "warning: block counter just went negative (this should not happen)\n"); \ | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |         return; \ | 
					
						
							|  |  |  |     } \ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void smc_decode_stream(SmcContext *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int width = s->avctx->width; | 
					
						
							|  |  |  |     int height = s->avctx->height; | 
					
						
							|  |  |  |     int stride = s->frame.linesize[0]; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     int stream_ptr = 0; | 
					
						
							|  |  |  |     int chunk_size; | 
					
						
							|  |  |  |     unsigned char opcode; | 
					
						
							|  |  |  |     int n_blocks; | 
					
						
							|  |  |  |     unsigned int color_flags; | 
					
						
							|  |  |  |     unsigned int color_flags_a; | 
					
						
							|  |  |  |     unsigned int color_flags_b; | 
					
						
							|  |  |  |     unsigned int flag_mask; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     unsigned char *pixels = s->frame.data[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int image_size = height * s->frame.linesize[0]; | 
					
						
							|  |  |  |     int row_ptr = 0; | 
					
						
							|  |  |  |     int pixel_ptr = 0; | 
					
						
							|  |  |  |     int pixel_x, pixel_y; | 
					
						
							|  |  |  |     int row_inc = stride - 4; | 
					
						
							|  |  |  |     int block_ptr; | 
					
						
							|  |  |  |     int prev_block_ptr; | 
					
						
							|  |  |  |     int prev_block_ptr1, prev_block_ptr2; | 
					
						
							|  |  |  |     int prev_block_flag; | 
					
						
							|  |  |  |     int total_blocks; | 
					
						
							|  |  |  |     int color_table_index;  /* indexes to color pair, quad, or octet tables */ | 
					
						
							|  |  |  |     int pixel; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int color_pair_index = 0; | 
					
						
							|  |  |  |     int color_quad_index = 0; | 
					
						
							|  |  |  |     int color_octet_index = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* make the palette available */ | 
					
						
							| 
									
										
										
										
											2011-04-09 15:49:51 +02:00
										 |  |  |     memcpy(s->frame.data[1], s->pal, AVPALETTE_SIZE); | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |     chunk_size = AV_RB32(&s->buf[stream_ptr]) & 0x00FFFFFF; | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |     stream_ptr += 4; | 
					
						
							|  |  |  |     if (chunk_size != s->size) | 
					
						
							| 
									
										
										
										
											2004-04-07 13:26:47 +00:00
										 |  |  |         av_log(s->avctx, AV_LOG_INFO, "warning: MOV chunk size != encoded chunk size (%d != %d); using MOV chunk size\n", | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |             chunk_size, s->size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     chunk_size = s->size; | 
					
						
							| 
									
										
										
										
											2004-06-27 11:06:30 +00:00
										 |  |  |     total_blocks = ((s->avctx->width + 3) / 4) * ((s->avctx->height + 3) / 4); | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* traverse through the blocks */ | 
					
						
							|  |  |  |     while (total_blocks) { | 
					
						
							|  |  |  |         /* sanity checks */ | 
					
						
							|  |  |  |         /* make sure stream ptr hasn't gone out of bounds */ | 
					
						
							|  |  |  |         if (stream_ptr > chunk_size) { | 
					
						
							| 
									
										
										
										
											2004-04-07 13:26:47 +00:00
										 |  |  |             av_log(s->avctx, AV_LOG_INFO, "SMC decoder just went out of bounds (stream ptr = %d, chunk size = %d)\n", | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |                 stream_ptr, chunk_size); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         /* make sure the row pointer hasn't gone wild */ | 
					
						
							|  |  |  |         if (row_ptr >= image_size) { | 
					
						
							| 
									
										
										
										
											2004-04-07 13:26:47 +00:00
										 |  |  |             av_log(s->avctx, AV_LOG_INFO, "SMC decoder just went out of bounds (row ptr = %d, height = %d)\n", | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |                 row_ptr, image_size); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         opcode = s->buf[stream_ptr++]; | 
					
						
							|  |  |  |         switch (opcode & 0xF0) { | 
					
						
							|  |  |  |         /* skip n blocks */ | 
					
						
							|  |  |  |         case 0x00: | 
					
						
							|  |  |  |         case 0x10: | 
					
						
							|  |  |  |             n_blocks = GET_BLOCK_COUNT(); | 
					
						
							|  |  |  |             while (n_blocks--) { | 
					
						
							|  |  |  |                 ADVANCE_BLOCK(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* repeat last block n times */ | 
					
						
							|  |  |  |         case 0x20: | 
					
						
							|  |  |  |         case 0x30: | 
					
						
							|  |  |  |             n_blocks = GET_BLOCK_COUNT(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* sanity check */ | 
					
						
							|  |  |  |             if ((row_ptr == 0) && (pixel_ptr == 0)) { | 
					
						
							| 
									
										
										
										
											2004-04-07 13:26:47 +00:00
										 |  |  |                 av_log(s->avctx, AV_LOG_INFO, "encountered repeat block opcode (%02X) but no blocks rendered yet\n", | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |                     opcode & 0xF0); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* figure out where the previous block started */ | 
					
						
							|  |  |  |             if (pixel_ptr == 0) | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |                 prev_block_ptr1 = | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |                     (row_ptr - s->avctx->width * 4) + s->avctx->width - 4; | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 prev_block_ptr1 = row_ptr + pixel_ptr - 4; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             while (n_blocks--) { | 
					
						
							|  |  |  |                 block_ptr = row_ptr + pixel_ptr; | 
					
						
							|  |  |  |                 prev_block_ptr = prev_block_ptr1; | 
					
						
							|  |  |  |                 for (pixel_y = 0; pixel_y < 4; pixel_y++) { | 
					
						
							|  |  |  |                     for (pixel_x = 0; pixel_x < 4; pixel_x++) { | 
					
						
							|  |  |  |                         pixels[block_ptr++] = pixels[prev_block_ptr++]; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     block_ptr += row_inc; | 
					
						
							|  |  |  |                     prev_block_ptr += row_inc; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 ADVANCE_BLOCK(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* repeat previous pair of blocks n times */ | 
					
						
							|  |  |  |         case 0x40: | 
					
						
							|  |  |  |         case 0x50: | 
					
						
							|  |  |  |             n_blocks = GET_BLOCK_COUNT(); | 
					
						
							|  |  |  |             n_blocks *= 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* sanity check */ | 
					
						
							|  |  |  |             if ((row_ptr == 0) && (pixel_ptr < 2 * 4)) { | 
					
						
							| 
									
										
										
										
											2005-12-22 01:10:11 +00:00
										 |  |  |                 av_log(s->avctx, AV_LOG_INFO, "encountered repeat block opcode (%02X) but not enough blocks rendered yet\n", | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |                     opcode & 0xF0); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* figure out where the previous 2 blocks started */ | 
					
						
							|  |  |  |             if (pixel_ptr == 0) | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |                 prev_block_ptr1 = (row_ptr - s->avctx->width * 4) + | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |                     s->avctx->width - 4 * 2; | 
					
						
							|  |  |  |             else if (pixel_ptr == 4) | 
					
						
							|  |  |  |                 prev_block_ptr1 = (row_ptr - s->avctx->width * 4) + row_inc; | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 prev_block_ptr1 = row_ptr + pixel_ptr - 4 * 2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (pixel_ptr == 0) | 
					
						
							|  |  |  |                 prev_block_ptr2 = (row_ptr - s->avctx->width * 4) + row_inc; | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 prev_block_ptr2 = row_ptr + pixel_ptr - 4; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             prev_block_flag = 0; | 
					
						
							|  |  |  |             while (n_blocks--) { | 
					
						
							|  |  |  |                 block_ptr = row_ptr + pixel_ptr; | 
					
						
							|  |  |  |                 if (prev_block_flag) | 
					
						
							|  |  |  |                     prev_block_ptr = prev_block_ptr2; | 
					
						
							|  |  |  |                 else | 
					
						
							|  |  |  |                     prev_block_ptr = prev_block_ptr1; | 
					
						
							|  |  |  |                 prev_block_flag = !prev_block_flag; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 for (pixel_y = 0; pixel_y < 4; pixel_y++) { | 
					
						
							|  |  |  |                     for (pixel_x = 0; pixel_x < 4; pixel_x++) { | 
					
						
							|  |  |  |                         pixels[block_ptr++] = pixels[prev_block_ptr++]; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     block_ptr += row_inc; | 
					
						
							|  |  |  |                     prev_block_ptr += row_inc; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 ADVANCE_BLOCK(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* 1-color block encoding */ | 
					
						
							|  |  |  |         case 0x60: | 
					
						
							|  |  |  |         case 0x70: | 
					
						
							|  |  |  |             n_blocks = GET_BLOCK_COUNT(); | 
					
						
							|  |  |  |             pixel = s->buf[stream_ptr++]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             while (n_blocks--) { | 
					
						
							|  |  |  |                 block_ptr = row_ptr + pixel_ptr; | 
					
						
							|  |  |  |                 for (pixel_y = 0; pixel_y < 4; pixel_y++) { | 
					
						
							|  |  |  |                     for (pixel_x = 0; pixel_x < 4; pixel_x++) { | 
					
						
							|  |  |  |                         pixels[block_ptr++] = pixel; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     block_ptr += row_inc; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 ADVANCE_BLOCK(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* 2-color block encoding */ | 
					
						
							|  |  |  |         case 0x80: | 
					
						
							|  |  |  |         case 0x90: | 
					
						
							|  |  |  |             n_blocks = (opcode & 0x0F) + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* figure out which color pair to use to paint the 2-color block */ | 
					
						
							|  |  |  |             if ((opcode & 0xF0) == 0x80) { | 
					
						
							|  |  |  |                 /* fetch the next 2 colors from bytestream and store in next
 | 
					
						
							|  |  |  |                  * available entry in the color pair table */ | 
					
						
							|  |  |  |                 for (i = 0; i < CPAIR; i++) { | 
					
						
							|  |  |  |                     pixel = s->buf[stream_ptr++]; | 
					
						
							|  |  |  |                     color_table_index = CPAIR * color_pair_index + i; | 
					
						
							|  |  |  |                     s->color_pairs[color_table_index] = pixel; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 /* this is the base index to use for this block */ | 
					
						
							|  |  |  |                 color_table_index = CPAIR * color_pair_index; | 
					
						
							|  |  |  |                 color_pair_index++; | 
					
						
							|  |  |  |                 /* wraparound */ | 
					
						
							|  |  |  |                 if (color_pair_index == COLORS_PER_TABLE) | 
					
						
							|  |  |  |                     color_pair_index = 0; | 
					
						
							|  |  |  |             } else | 
					
						
							|  |  |  |                 color_table_index = CPAIR * s->buf[stream_ptr++]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             while (n_blocks--) { | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |                 color_flags = AV_RB16(&s->buf[stream_ptr]); | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |                 stream_ptr += 2; | 
					
						
							|  |  |  |                 flag_mask = 0x8000; | 
					
						
							|  |  |  |                 block_ptr = row_ptr + pixel_ptr; | 
					
						
							|  |  |  |                 for (pixel_y = 0; pixel_y < 4; pixel_y++) { | 
					
						
							|  |  |  |                     for (pixel_x = 0; pixel_x < 4; pixel_x++) { | 
					
						
							|  |  |  |                         if (color_flags & flag_mask) | 
					
						
							|  |  |  |                             pixel = color_table_index + 1; | 
					
						
							|  |  |  |                         else | 
					
						
							|  |  |  |                             pixel = color_table_index; | 
					
						
							|  |  |  |                         flag_mask >>= 1; | 
					
						
							|  |  |  |                         pixels[block_ptr++] = s->color_pairs[pixel]; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     block_ptr += row_inc; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 ADVANCE_BLOCK(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* 4-color block encoding */ | 
					
						
							|  |  |  |         case 0xA0: | 
					
						
							|  |  |  |         case 0xB0: | 
					
						
							|  |  |  |             n_blocks = (opcode & 0x0F) + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* figure out which color quad to use to paint the 4-color block */ | 
					
						
							|  |  |  |             if ((opcode & 0xF0) == 0xA0) { | 
					
						
							|  |  |  |                 /* fetch the next 4 colors from bytestream and store in next
 | 
					
						
							|  |  |  |                  * available entry in the color quad table */ | 
					
						
							|  |  |  |                 for (i = 0; i < CQUAD; i++) { | 
					
						
							|  |  |  |                     pixel = s->buf[stream_ptr++]; | 
					
						
							|  |  |  |                     color_table_index = CQUAD * color_quad_index + i; | 
					
						
							|  |  |  |                     s->color_quads[color_table_index] = pixel; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 /* this is the base index to use for this block */ | 
					
						
							|  |  |  |                 color_table_index = CQUAD * color_quad_index; | 
					
						
							|  |  |  |                 color_quad_index++; | 
					
						
							|  |  |  |                 /* wraparound */ | 
					
						
							|  |  |  |                 if (color_quad_index == COLORS_PER_TABLE) | 
					
						
							|  |  |  |                     color_quad_index = 0; | 
					
						
							|  |  |  |             } else | 
					
						
							|  |  |  |                 color_table_index = CQUAD * s->buf[stream_ptr++]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             while (n_blocks--) { | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |                 color_flags = AV_RB32(&s->buf[stream_ptr]); | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |                 stream_ptr += 4; | 
					
						
							|  |  |  |                 /* flag mask actually acts as a bit shift count here */ | 
					
						
							|  |  |  |                 flag_mask = 30; | 
					
						
							|  |  |  |                 block_ptr = row_ptr + pixel_ptr; | 
					
						
							|  |  |  |                 for (pixel_y = 0; pixel_y < 4; pixel_y++) { | 
					
						
							|  |  |  |                     for (pixel_x = 0; pixel_x < 4; pixel_x++) { | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |                         pixel = color_table_index + | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |                             ((color_flags >> flag_mask) & 0x03); | 
					
						
							|  |  |  |                         flag_mask -= 2; | 
					
						
							|  |  |  |                         pixels[block_ptr++] = s->color_quads[pixel]; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     block_ptr += row_inc; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 ADVANCE_BLOCK(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* 8-color block encoding */ | 
					
						
							|  |  |  |         case 0xC0: | 
					
						
							|  |  |  |         case 0xD0: | 
					
						
							|  |  |  |             n_blocks = (opcode & 0x0F) + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* figure out which color octet to use to paint the 8-color block */ | 
					
						
							|  |  |  |             if ((opcode & 0xF0) == 0xC0) { | 
					
						
							|  |  |  |                 /* fetch the next 8 colors from bytestream and store in next
 | 
					
						
							|  |  |  |                  * available entry in the color octet table */ | 
					
						
							|  |  |  |                 for (i = 0; i < COCTET; i++) { | 
					
						
							|  |  |  |                     pixel = s->buf[stream_ptr++]; | 
					
						
							|  |  |  |                     color_table_index = COCTET * color_octet_index + i; | 
					
						
							|  |  |  |                     s->color_octets[color_table_index] = pixel; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 /* this is the base index to use for this block */ | 
					
						
							|  |  |  |                 color_table_index = COCTET * color_octet_index; | 
					
						
							|  |  |  |                 color_octet_index++; | 
					
						
							|  |  |  |                 /* wraparound */ | 
					
						
							|  |  |  |                 if (color_octet_index == COLORS_PER_TABLE) | 
					
						
							|  |  |  |                     color_octet_index = 0; | 
					
						
							|  |  |  |             } else | 
					
						
							|  |  |  |                 color_table_index = COCTET * s->buf[stream_ptr++]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             while (n_blocks--) { | 
					
						
							|  |  |  |                 /*
 | 
					
						
							|  |  |  |                   For this input of 6 hex bytes: | 
					
						
							|  |  |  |                     01 23 45 67 89 AB | 
					
						
							|  |  |  |                   Mangle it to this output: | 
					
						
							|  |  |  |                     flags_a = xx012456, flags_b = xx89A37B | 
					
						
							|  |  |  |                 */ | 
					
						
							|  |  |  |                 /* build the color flags */ | 
					
						
							|  |  |  |                 color_flags_a = | 
					
						
							| 
									
										
										
										
											2009-09-19 11:36:51 +00:00
										 |  |  |                     ((AV_RB16(s->buf + stream_ptr    ) & 0xFFF0) << 8) | | 
					
						
							|  |  |  |                      (AV_RB16(s->buf + stream_ptr + 2) >> 4); | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |                 color_flags_b = | 
					
						
							| 
									
										
										
										
											2009-09-19 11:36:51 +00:00
										 |  |  |                     ((AV_RB16(s->buf + stream_ptr + 4) & 0xFFF0) << 8) | | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |                     ((s->buf[stream_ptr + 1] & 0x0F) << 8) | | 
					
						
							|  |  |  |                     ((s->buf[stream_ptr + 3] & 0x0F) << 4) | | 
					
						
							|  |  |  |                     (s->buf[stream_ptr + 5] & 0x0F); | 
					
						
							|  |  |  |                 stream_ptr += 6; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 color_flags = color_flags_a; | 
					
						
							|  |  |  |                 /* flag mask actually acts as a bit shift count here */ | 
					
						
							|  |  |  |                 flag_mask = 21; | 
					
						
							|  |  |  |                 block_ptr = row_ptr + pixel_ptr; | 
					
						
							|  |  |  |                 for (pixel_y = 0; pixel_y < 4; pixel_y++) { | 
					
						
							|  |  |  |                     /* reload flags at third row (iteration pixel_y == 2) */ | 
					
						
							|  |  |  |                     if (pixel_y == 2) { | 
					
						
							|  |  |  |                         color_flags = color_flags_b; | 
					
						
							|  |  |  |                         flag_mask = 21; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     for (pixel_x = 0; pixel_x < 4; pixel_x++) { | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |                         pixel = color_table_index + | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |                             ((color_flags >> flag_mask) & 0x07); | 
					
						
							|  |  |  |                         flag_mask -= 3; | 
					
						
							|  |  |  |                         pixels[block_ptr++] = s->color_octets[pixel]; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     block_ptr += row_inc; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 ADVANCE_BLOCK(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* 16-color block encoding (every pixel is a different color) */ | 
					
						
							|  |  |  |         case 0xE0: | 
					
						
							|  |  |  |             n_blocks = (opcode & 0x0F) + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             while (n_blocks--) { | 
					
						
							|  |  |  |                 block_ptr = row_ptr + pixel_ptr; | 
					
						
							|  |  |  |                 for (pixel_y = 0; pixel_y < 4; pixel_y++) { | 
					
						
							|  |  |  |                     for (pixel_x = 0; pixel_x < 4; pixel_x++) { | 
					
						
							|  |  |  |                         pixels[block_ptr++] = s->buf[stream_ptr++]; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     block_ptr += row_inc; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 ADVANCE_BLOCK(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case 0xF0: | 
					
						
							| 
									
										
										
										
											2004-04-07 13:26:47 +00:00
										 |  |  |             av_log(s->avctx, AV_LOG_INFO, "0xF0 opcode seen in SMC chunk (contact the developers)\n"); | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-21 03:11:20 +00:00
										 |  |  | static av_cold int smc_decode_init(AVCodecContext *avctx) | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-08 20:24:16 +00:00
										 |  |  |     SmcContext *s = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s->avctx = avctx; | 
					
						
							|  |  |  |     avctx->pix_fmt = PIX_FMT_PAL8; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-02 02:15:15 +02:00
										 |  |  |     avcodec_get_frame_defaults(&s->frame); | 
					
						
							| 
									
										
										
										
											2003-11-26 20:57:15 +00:00
										 |  |  |     s->frame.data[0] = NULL; | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int smc_decode_frame(AVCodecContext *avctx, | 
					
						
							|  |  |  |                              void *data, int *data_size, | 
					
						
							| 
									
										
										
										
											2009-04-07 15:59:50 +00:00
										 |  |  |                              AVPacket *avpkt) | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +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
										 |  |  |     SmcContext *s = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2011-04-09 15:49:51 +02:00
										 |  |  |     const uint8_t *pal = av_packet_get_side_data(avpkt, AV_PKT_DATA_PALETTE, NULL); | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s->buf = buf; | 
					
						
							|  |  |  |     s->size = buf_size; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-05 19:48:39 +01:00
										 |  |  |     s->frame.reference = 3; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     s->frame.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | | 
					
						
							| 
									
										
										
										
											2004-01-31 17:57:57 +00:00
										 |  |  |                             FF_BUFFER_HINTS_REUSABLE | FF_BUFFER_HINTS_READABLE; | 
					
						
							| 
									
										
										
										
											2003-11-26 20:57:15 +00:00
										 |  |  |     if (avctx->reget_buffer(avctx, &s->frame)) { | 
					
						
							| 
									
										
										
										
											2004-04-07 13:26:47 +00:00
										 |  |  |         av_log(s->avctx, AV_LOG_ERROR, "reget_buffer() failed\n"); | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-09 15:49:51 +02:00
										 |  |  |     if (pal) { | 
					
						
							|  |  |  |         s->frame.palette_has_changed = 1; | 
					
						
							|  |  |  |         memcpy(s->pal, pal, AVPALETTE_SIZE); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  |     smc_decode_stream(s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *data_size = sizeof(AVFrame); | 
					
						
							|  |  |  |     *(AVFrame*)data = s->frame; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* always report that the buffer was completely consumed */ | 
					
						
							|  |  |  |     return buf_size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-21 03:11:20 +00:00
										 |  |  | static av_cold int smc_decode_end(AVCodecContext *avctx) | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-04-08 20:24:16 +00:00
										 |  |  |     SmcContext *s = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-26 20:57:15 +00:00
										 |  |  |     if (s->frame.data[0]) | 
					
						
							|  |  |  |         avctx->release_buffer(avctx, &s->frame); | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 21:40:11 +00:00
										 |  |  | AVCodec ff_smc_decoder = { | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .name           = "smc", | 
					
						
							|  |  |  |     .type           = AVMEDIA_TYPE_VIDEO, | 
					
						
							|  |  |  |     .id             = CODEC_ID_SMC, | 
					
						
							|  |  |  |     .priv_data_size = sizeof(SmcContext), | 
					
						
							|  |  |  |     .init           = smc_decode_init, | 
					
						
							|  |  |  |     .close          = smc_decode_end, | 
					
						
							|  |  |  |     .decode         = smc_decode_frame, | 
					
						
							|  |  |  |     .capabilities   = CODEC_CAP_DR1, | 
					
						
							| 
									
										
										
										
											2008-06-12 21:50:13 +00:00
										 |  |  |     .long_name = NULL_IF_CONFIG_SMALL("QuickTime Graphics (SMC)"), | 
					
						
							| 
									
										
										
										
											2003-11-10 03:14:04 +00:00
										 |  |  | }; |