| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2011-10-30 17:56:57 +01:00
										 |  |  |  * DVB subtitle decoding | 
					
						
							| 
									
										
										
										
											2009-01-19 15:46:40 +00:00
										 |  |  |  * Copyright (c) 2005 Ian Caulfield | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +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. | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +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 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | #include "avcodec.h"
 | 
					
						
							|  |  |  | #include "dsputil.h"
 | 
					
						
							| 
									
										
										
										
											2009-04-13 16:20:26 +00:00
										 |  |  | #include "get_bits.h"
 | 
					
						
							| 
									
										
										
										
											2010-06-16 13:07:12 +00:00
										 |  |  | #include "bytestream.h"
 | 
					
						
							| 
									
										
										
										
											2010-07-01 18:49:44 +00:00
										 |  |  | #include "libavutil/colorspace.h"
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define DVBSUB_PAGE_SEGMENT     0x10
 | 
					
						
							|  |  |  | #define DVBSUB_REGION_SEGMENT   0x11
 | 
					
						
							|  |  |  | #define DVBSUB_CLUT_SEGMENT     0x12
 | 
					
						
							|  |  |  | #define DVBSUB_OBJECT_SEGMENT   0x13
 | 
					
						
							| 
									
										
										
										
											2010-06-16 13:07:12 +00:00
										 |  |  | #define DVBSUB_DISPLAYDEFINITION_SEGMENT 0x14
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | #define DVBSUB_DISPLAY_SEGMENT  0x80
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-13 22:53:01 +00:00
										 |  |  | #define cm (ff_cropTbl + MAX_NEG_CROP)
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-06 00:53:31 +02:00
										 |  |  | #ifdef DEBUG
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | #undef fprintf
 | 
					
						
							| 
									
										
										
										
											2011-06-06 14:10:22 +02:00
										 |  |  | #undef perror
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | #if 0
 | 
					
						
							|  |  |  | static void png_save(const char *filename, uint8_t *bitmap, int w, int h, | 
					
						
							|  |  |  |                      uint32_t *rgba_palette) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int x, y, v; | 
					
						
							|  |  |  |     FILE *f; | 
					
						
							|  |  |  |     char fname[40], fname2[40]; | 
					
						
							|  |  |  |     char command[1024]; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     snprintf(fname, 40, "%s.ppm", filename); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     f = fopen(fname, "w"); | 
					
						
							|  |  |  |     if (!f) { | 
					
						
							|  |  |  |         perror(fname); | 
					
						
							| 
									
										
										
										
											2011-06-06 14:10:22 +02:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     fprintf(f, "P6\n" | 
					
						
							|  |  |  |             "%d %d\n" | 
					
						
							|  |  |  |             "%d\n", | 
					
						
							|  |  |  |             w, h, 255); | 
					
						
							|  |  |  |     for(y = 0; y < h; y++) { | 
					
						
							|  |  |  |         for(x = 0; x < w; x++) { | 
					
						
							|  |  |  |             v = rgba_palette[bitmap[y * w + x]]; | 
					
						
							|  |  |  |             putc((v >> 16) & 0xff, f); | 
					
						
							|  |  |  |             putc((v >> 8) & 0xff, f); | 
					
						
							|  |  |  |             putc((v >> 0) & 0xff, f); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     fclose(f); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     snprintf(fname2, 40, "%s-a.pgm", filename); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     f = fopen(fname2, "w"); | 
					
						
							|  |  |  |     if (!f) { | 
					
						
							|  |  |  |         perror(fname2); | 
					
						
							| 
									
										
										
										
											2011-06-06 14:10:22 +02:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     fprintf(f, "P5\n" | 
					
						
							|  |  |  |             "%d %d\n" | 
					
						
							|  |  |  |             "%d\n", | 
					
						
							|  |  |  |             w, h, 255); | 
					
						
							|  |  |  |     for(y = 0; y < h; y++) { | 
					
						
							|  |  |  |         for(x = 0; x < w; x++) { | 
					
						
							|  |  |  |             v = rgba_palette[bitmap[y * w + x]]; | 
					
						
							|  |  |  |             putc((v >> 24) & 0xff, f); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     fclose(f); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     snprintf(command, 1024, "pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename); | 
					
						
							|  |  |  |     system(command); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     snprintf(command, 1024, "rm %s %s", fname, fname2); | 
					
						
							|  |  |  |     system(command); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void png_save2(const char *filename, uint32_t *bitmap, int w, int h) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int x, y, v; | 
					
						
							|  |  |  |     FILE *f; | 
					
						
							|  |  |  |     char fname[40], fname2[40]; | 
					
						
							|  |  |  |     char command[1024]; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:18:30 +00:00
										 |  |  |     snprintf(fname, sizeof(fname), "%s.ppm", filename); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     f = fopen(fname, "w"); | 
					
						
							|  |  |  |     if (!f) { | 
					
						
							|  |  |  |         perror(fname); | 
					
						
							| 
									
										
										
										
											2011-06-06 14:10:22 +02:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     fprintf(f, "P6\n" | 
					
						
							|  |  |  |             "%d %d\n" | 
					
						
							|  |  |  |             "%d\n", | 
					
						
							|  |  |  |             w, h, 255); | 
					
						
							|  |  |  |     for(y = 0; y < h; y++) { | 
					
						
							|  |  |  |         for(x = 0; x < w; x++) { | 
					
						
							|  |  |  |             v = bitmap[y * w + x]; | 
					
						
							|  |  |  |             putc((v >> 16) & 0xff, f); | 
					
						
							|  |  |  |             putc((v >> 8) & 0xff, f); | 
					
						
							|  |  |  |             putc((v >> 0) & 0xff, f); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     fclose(f); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:18:30 +00:00
										 |  |  |     snprintf(fname2, sizeof(fname2), "%s-a.pgm", filename); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     f = fopen(fname2, "w"); | 
					
						
							|  |  |  |     if (!f) { | 
					
						
							|  |  |  |         perror(fname2); | 
					
						
							| 
									
										
										
										
											2011-06-06 14:10:22 +02:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     fprintf(f, "P5\n" | 
					
						
							|  |  |  |             "%d %d\n" | 
					
						
							|  |  |  |             "%d\n", | 
					
						
							|  |  |  |             w, h, 255); | 
					
						
							|  |  |  |     for(y = 0; y < h; y++) { | 
					
						
							|  |  |  |         for(x = 0; x < w; x++) { | 
					
						
							|  |  |  |             v = bitmap[y * w + x]; | 
					
						
							|  |  |  |             putc((v >> 24) & 0xff, f); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     fclose(f); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:18:30 +00:00
										 |  |  |     snprintf(command, sizeof(command), "pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     system(command); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:18:30 +00:00
										 |  |  |     snprintf(command, sizeof(command), "rm %s %s", fname, fname2); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     system(command); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define RGBA(r,g,b,a) (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct DVBSubCLUT { | 
					
						
							|  |  |  |     int id; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     int version; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     uint32_t clut4[4]; | 
					
						
							|  |  |  |     uint32_t clut16[16]; | 
					
						
							|  |  |  |     uint32_t clut256[256]; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     struct DVBSubCLUT *next; | 
					
						
							|  |  |  | } DVBSubCLUT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static DVBSubCLUT default_clut; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct DVBSubObjectDisplay { | 
					
						
							|  |  |  |     int object_id; | 
					
						
							|  |  |  |     int region_id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int x_pos; | 
					
						
							|  |  |  |     int y_pos; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-03 13:33:48 +00:00
										 |  |  |     int fgcolor; | 
					
						
							|  |  |  |     int bgcolor; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     struct DVBSubObjectDisplay *region_list_next; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     struct DVBSubObjectDisplay *object_list_next; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | } DVBSubObjectDisplay; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct DVBSubObject { | 
					
						
							|  |  |  |     int id; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     int version; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     int type; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     DVBSubObjectDisplay *display_list; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     struct DVBSubObject *next; | 
					
						
							|  |  |  | } DVBSubObject; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct DVBSubRegionDisplay { | 
					
						
							|  |  |  |     int region_id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int x_pos; | 
					
						
							|  |  |  |     int y_pos; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     struct DVBSubRegionDisplay *next; | 
					
						
							|  |  |  | } DVBSubRegionDisplay; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct DVBSubRegion { | 
					
						
							|  |  |  |     int id; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     int version; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     int width; | 
					
						
							|  |  |  |     int height; | 
					
						
							|  |  |  |     int depth; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     int clut; | 
					
						
							| 
									
										
										
										
											2007-12-03 13:33:48 +00:00
										 |  |  |     int bgcolor; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     uint8_t *pbuf; | 
					
						
							|  |  |  |     int buf_size; | 
					
						
							| 
									
										
										
										
											2011-10-14 15:28:50 +02:00
										 |  |  |     int dirty; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     DVBSubObjectDisplay *display_list; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     struct DVBSubRegion *next; | 
					
						
							|  |  |  | } DVBSubRegion; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-16 13:07:12 +00:00
										 |  |  | typedef struct DVBSubDisplayDefinition { | 
					
						
							|  |  |  |     int version; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int x; | 
					
						
							|  |  |  |     int y; | 
					
						
							|  |  |  |     int width; | 
					
						
							|  |  |  |     int height; | 
					
						
							|  |  |  | } DVBSubDisplayDefinition; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | typedef struct DVBSubContext { | 
					
						
							|  |  |  |     int composition_id; | 
					
						
							|  |  |  |     int ancillary_id; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     int version; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     int time_out; | 
					
						
							|  |  |  |     DVBSubRegion *region_list; | 
					
						
							|  |  |  |     DVBSubCLUT   *clut_list; | 
					
						
							|  |  |  |     DVBSubObject *object_list; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     int display_list_size; | 
					
						
							|  |  |  |     DVBSubRegionDisplay *display_list; | 
					
						
							| 
									
										
										
										
											2010-06-16 13:07:12 +00:00
										 |  |  |     DVBSubDisplayDefinition *display_definition; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | } DVBSubContext; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static DVBSubObject* get_object(DVBSubContext *ctx, int object_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DVBSubObject *ptr = ctx->object_list; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     while (ptr && ptr->id != object_id) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         ptr = ptr->next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static DVBSubCLUT* get_clut(DVBSubContext *ctx, int clut_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DVBSubCLUT *ptr = ctx->clut_list; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     while (ptr && ptr->id != clut_id) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         ptr = ptr->next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static DVBSubRegion* get_region(DVBSubContext *ctx, int region_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DVBSubRegion *ptr = ctx->region_list; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     while (ptr && ptr->id != region_id) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         ptr = ptr->next; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void delete_region_display_list(DVBSubContext *ctx, DVBSubRegion *region) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DVBSubObject *object, *obj2, **obj2_ptr; | 
					
						
							|  |  |  |     DVBSubObjectDisplay *display, *obj_disp, **obj_disp_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     while (region->display_list) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         display = region->display_list; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         object = get_object(ctx, display->object_id); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |         if (object) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             obj_disp_ptr = &object->display_list; | 
					
						
							| 
									
										
										
										
											2008-05-28 01:34:46 +00:00
										 |  |  |             obj_disp = *obj_disp_ptr; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |             while (obj_disp && obj_disp != display) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                 obj_disp_ptr = &obj_disp->object_list_next; | 
					
						
							| 
									
										
										
										
											2008-05-28 01:34:46 +00:00
										 |  |  |                 obj_disp = *obj_disp_ptr; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             if (obj_disp) { | 
					
						
							|  |  |  |                 *obj_disp_ptr = obj_disp->object_list_next; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:33:25 +00:00
										 |  |  |                 if (!object->display_list) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                     obj2_ptr = &ctx->object_list; | 
					
						
							| 
									
										
										
										
											2008-05-28 01:34:46 +00:00
										 |  |  |                     obj2 = *obj2_ptr; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-28 01:30:59 +00:00
										 |  |  |                     while (obj2 != object) { | 
					
						
							|  |  |  |                         assert(obj2); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                         obj2_ptr = &obj2->next; | 
					
						
							| 
									
										
										
										
											2008-05-28 01:34:46 +00:00
										 |  |  |                         obj2 = *obj2_ptr; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                     *obj2_ptr = obj2->next; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                     av_free(obj2); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         region->display_list = display->region_list_next; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         av_free(display); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-04 20:44:14 +02:00
										 |  |  | static void delete_cluts(DVBSubContext *ctx) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     DVBSubCLUT *clut; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:30:00 +00:00
										 |  |  |     while (ctx->clut_list) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         clut = ctx->clut_list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ctx->clut_list = clut->next; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         av_free(clut); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-05-04 20:44:14 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-04 20:44:14 +02:00
										 |  |  | static void delete_objects(DVBSubContext *ctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DVBSubObject *object; | 
					
						
							| 
									
										
										
										
											2010-06-16 13:07:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-04 20:44:14 +02:00
										 |  |  |     while (ctx->object_list) { | 
					
						
							|  |  |  |         object = ctx->object_list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ctx->object_list = object->next; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         av_free(object); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void delete_regions(DVBSubContext *ctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DVBSubRegion *region; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (ctx->region_list) { | 
					
						
							|  |  |  |         region = ctx->region_list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ctx->region_list = region->next; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         delete_region_display_list(ctx, region); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         av_free(region->pbuf); | 
					
						
							|  |  |  |         av_free(region); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-21 03:11:20 +00:00
										 |  |  | static av_cold int dvbsub_init_decoder(AVCodecContext *avctx) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     int i, r, g, b, a = 0; | 
					
						
							| 
									
										
										
										
											2010-07-11 07:45:42 +00:00
										 |  |  |     DVBSubContext *ctx = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-14 17:28:40 +00:00
										 |  |  |     if (!avctx->extradata || avctx->extradata_size != 4) { | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_WARNING, "Invalid extradata, subtitle streams may be combined!\n"); | 
					
						
							|  |  |  |         ctx->composition_id = -1; | 
					
						
							|  |  |  |         ctx->ancillary_id   = -1; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         ctx->composition_id = AV_RB16(avctx->extradata); | 
					
						
							|  |  |  |         ctx->ancillary_id   = AV_RB16(avctx->extradata + 2); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     ctx->version = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     default_clut.id = -1; | 
					
						
							|  |  |  |     default_clut.next = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default_clut.clut4[0] = RGBA(  0,   0,   0,   0); | 
					
						
							|  |  |  |     default_clut.clut4[1] = RGBA(255, 255, 255, 255); | 
					
						
							|  |  |  |     default_clut.clut4[2] = RGBA(  0,   0,   0, 255); | 
					
						
							|  |  |  |     default_clut.clut4[3] = RGBA(127, 127, 127, 255); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default_clut.clut16[0] = RGBA(  0,   0,   0,   0); | 
					
						
							|  |  |  |     for (i = 1; i < 16; i++) { | 
					
						
							|  |  |  |         if (i < 8) { | 
					
						
							|  |  |  |             r = (i & 1) ? 255 : 0; | 
					
						
							|  |  |  |             g = (i & 2) ? 255 : 0; | 
					
						
							|  |  |  |             b = (i & 4) ? 255 : 0; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             r = (i & 1) ? 127 : 0; | 
					
						
							|  |  |  |             g = (i & 2) ? 127 : 0; | 
					
						
							|  |  |  |             b = (i & 4) ? 127 : 0; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         default_clut.clut16[i] = RGBA(r, g, b, 255); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default_clut.clut256[0] = RGBA(  0,   0,   0,   0); | 
					
						
							|  |  |  |     for (i = 1; i < 256; i++) { | 
					
						
							|  |  |  |         if (i < 8) { | 
					
						
							|  |  |  |             r = (i & 1) ? 255 : 0; | 
					
						
							|  |  |  |             g = (i & 2) ? 255 : 0; | 
					
						
							|  |  |  |             b = (i & 4) ? 255 : 0; | 
					
						
							|  |  |  |             a = 63; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             switch (i & 0x88) { | 
					
						
							|  |  |  |             case 0x00: | 
					
						
							|  |  |  |                 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0); | 
					
						
							|  |  |  |                 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0); | 
					
						
							|  |  |  |                 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 0); | 
					
						
							|  |  |  |                 a = 255; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 0x08: | 
					
						
							|  |  |  |                 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0); | 
					
						
							|  |  |  |                 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0); | 
					
						
							|  |  |  |                 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 0); | 
					
						
							|  |  |  |                 a = 127; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 0x80: | 
					
						
							|  |  |  |                 r = 127 + ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0); | 
					
						
							|  |  |  |                 g = 127 + ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0); | 
					
						
							|  |  |  |                 b = 127 + ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0); | 
					
						
							|  |  |  |                 a = 255; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 0x88: | 
					
						
							|  |  |  |                 r = ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0); | 
					
						
							|  |  |  |                 g = ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0); | 
					
						
							|  |  |  |                 b = ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0); | 
					
						
							|  |  |  |                 a = 255; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         default_clut.clut256[i] = RGBA(r, g, b, a); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-21 03:11:20 +00:00
										 |  |  | static av_cold int dvbsub_close_decoder(AVCodecContext *avctx) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-11 07:45:42 +00:00
										 |  |  |     DVBSubContext *ctx = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     DVBSubRegionDisplay *display; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-04 20:44:14 +02:00
										 |  |  |     delete_regions(ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     delete_objects(ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     delete_cluts(ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     av_freep(&ctx->display_definition); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:30:00 +00:00
										 |  |  |     while (ctx->display_list) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         display = ctx->display_list; | 
					
						
							|  |  |  |         ctx->display_list = display->next; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         av_free(display); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | static int dvbsub_read_2bit_string(uint8_t *destbuf, int dbuf_len, | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |                                    const uint8_t **srcbuf, int buf_size, | 
					
						
							| 
									
										
										
										
											2011-10-14 14:36:56 +02:00
										 |  |  |                                    int non_mod, uint8_t *map_table, int x_pos) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     GetBitContext gb; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     int bits; | 
					
						
							|  |  |  |     int run_length; | 
					
						
							| 
									
										
										
										
											2011-10-14 14:36:56 +02:00
										 |  |  |     int pixels_read = x_pos; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-12 21:48:43 +00:00
										 |  |  |     init_get_bits(&gb, *srcbuf, buf_size << 3); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 14:36:56 +02:00
										 |  |  |     destbuf += x_pos; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-12 21:48:43 +00:00
										 |  |  |     while (get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         bits = get_bits(&gb, 2); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |         if (bits) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             if (non_mod != 1 || bits != 1) { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                 if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                     *destbuf++ = map_table[bits]; | 
					
						
							|  |  |  |                 else | 
					
						
							|  |  |  |                     *destbuf++ = bits; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             pixels_read++; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2007-08-09 00:13:31 +00:00
										 |  |  |             bits = get_bits1(&gb); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             if (bits == 1) { | 
					
						
							|  |  |  |                 run_length = get_bits(&gb, 3) + 3; | 
					
						
							|  |  |  |                 bits = get_bits(&gb, 2); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                 if (non_mod == 1 && bits == 1) | 
					
						
							|  |  |  |                     pixels_read += run_length; | 
					
						
							|  |  |  |                 else { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                     if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                         bits = map_table[bits]; | 
					
						
							|  |  |  |                     while (run_length-- > 0 && pixels_read < dbuf_len) { | 
					
						
							|  |  |  |                         *destbuf++ = bits; | 
					
						
							|  |  |  |                         pixels_read++; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2007-08-09 00:13:31 +00:00
										 |  |  |                 bits = get_bits1(&gb); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                 if (bits == 0) { | 
					
						
							|  |  |  |                     bits = get_bits(&gb, 2); | 
					
						
							|  |  |  |                     if (bits == 2) { | 
					
						
							|  |  |  |                         run_length = get_bits(&gb, 4) + 12; | 
					
						
							|  |  |  |                         bits = get_bits(&gb, 2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         if (non_mod == 1 && bits == 1) | 
					
						
							|  |  |  |                             pixels_read += run_length; | 
					
						
							|  |  |  |                         else { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                             if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                                 bits = map_table[bits]; | 
					
						
							|  |  |  |                             while (run_length-- > 0 && pixels_read < dbuf_len) { | 
					
						
							|  |  |  |                                 *destbuf++ = bits; | 
					
						
							|  |  |  |                                 pixels_read++; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } else if (bits == 3) { | 
					
						
							|  |  |  |                         run_length = get_bits(&gb, 8) + 29; | 
					
						
							|  |  |  |                         bits = get_bits(&gb, 2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         if (non_mod == 1 && bits == 1) | 
					
						
							|  |  |  |                             pixels_read += run_length; | 
					
						
							|  |  |  |                         else { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                             if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                                 bits = map_table[bits]; | 
					
						
							|  |  |  |                             while (run_length-- > 0 && pixels_read < dbuf_len) { | 
					
						
							|  |  |  |                                 *destbuf++ = bits; | 
					
						
							|  |  |  |                                 pixels_read++; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } else if (bits == 1) { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                         if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                             bits = map_table[0]; | 
					
						
							|  |  |  |                         else | 
					
						
							|  |  |  |                             bits = 0; | 
					
						
							| 
									
										
										
										
											2011-10-14 14:52:33 +02:00
										 |  |  |                         run_length = 2; | 
					
						
							|  |  |  |                         while (run_length-- > 0 && pixels_read < dbuf_len) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                             *destbuf++ = bits; | 
					
						
							| 
									
										
										
										
											2011-10-14 14:52:33 +02:00
										 |  |  |                             pixels_read++; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         (*srcbuf) += (get_bits_count(&gb) + 7) >> 3; | 
					
						
							|  |  |  |                         return pixels_read; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                     if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                         bits = map_table[0]; | 
					
						
							|  |  |  |                     else | 
					
						
							|  |  |  |                         bits = 0; | 
					
						
							|  |  |  |                     *destbuf++ = bits; | 
					
						
							|  |  |  |                     pixels_read++; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     if (get_bits(&gb, 6)) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         av_log(0, AV_LOG_ERROR, "DVBSub error: line overflow\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return pixels_read; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int dvbsub_read_4bit_string(uint8_t *destbuf, int dbuf_len, | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |                                    const uint8_t **srcbuf, int buf_size, | 
					
						
							| 
									
										
										
										
											2011-10-14 14:36:56 +02:00
										 |  |  |                                    int non_mod, uint8_t *map_table, int x_pos) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     GetBitContext gb; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     int bits; | 
					
						
							|  |  |  |     int run_length; | 
					
						
							| 
									
										
										
										
											2011-10-14 14:36:56 +02:00
										 |  |  |     int pixels_read = x_pos; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-12 21:48:43 +00:00
										 |  |  |     init_get_bits(&gb, *srcbuf, buf_size << 3); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 14:36:56 +02:00
										 |  |  |     destbuf += x_pos; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-12 21:48:43 +00:00
										 |  |  |     while (get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         bits = get_bits(&gb, 4); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |         if (bits) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             if (non_mod != 1 || bits != 1) { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                 if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                     *destbuf++ = map_table[bits]; | 
					
						
							|  |  |  |                 else | 
					
						
							|  |  |  |                     *destbuf++ = bits; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             pixels_read++; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2007-08-09 00:13:31 +00:00
										 |  |  |             bits = get_bits1(&gb); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             if (bits == 0) { | 
					
						
							|  |  |  |                 run_length = get_bits(&gb, 3); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                 if (run_length == 0) { | 
					
						
							|  |  |  |                     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3; | 
					
						
							|  |  |  |                     return pixels_read; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                 run_length += 2; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                 if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                     bits = map_table[0]; | 
					
						
							|  |  |  |                 else | 
					
						
							|  |  |  |                     bits = 0; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                 while (run_length-- > 0 && pixels_read < dbuf_len) { | 
					
						
							|  |  |  |                     *destbuf++ = bits; | 
					
						
							|  |  |  |                     pixels_read++; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2007-08-09 00:13:31 +00:00
										 |  |  |                 bits = get_bits1(&gb); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                 if (bits == 0) { | 
					
						
							|  |  |  |                     run_length = get_bits(&gb, 2) + 4; | 
					
						
							|  |  |  |                     bits = get_bits(&gb, 4); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if (non_mod == 1 && bits == 1) | 
					
						
							|  |  |  |                         pixels_read += run_length; | 
					
						
							|  |  |  |                     else { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                         if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                             bits = map_table[bits]; | 
					
						
							|  |  |  |                         while (run_length-- > 0 && pixels_read < dbuf_len) { | 
					
						
							|  |  |  |                             *destbuf++ = bits; | 
					
						
							|  |  |  |                             pixels_read++; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     bits = get_bits(&gb, 2); | 
					
						
							|  |  |  |                     if (bits == 2) { | 
					
						
							|  |  |  |                         run_length = get_bits(&gb, 4) + 9; | 
					
						
							|  |  |  |                         bits = get_bits(&gb, 4); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                         if (non_mod == 1 && bits == 1) | 
					
						
							|  |  |  |                             pixels_read += run_length; | 
					
						
							|  |  |  |                         else { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                             if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                                 bits = map_table[bits]; | 
					
						
							|  |  |  |                             while (run_length-- > 0 && pixels_read < dbuf_len) { | 
					
						
							|  |  |  |                                 *destbuf++ = bits; | 
					
						
							|  |  |  |                                 pixels_read++; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } else if (bits == 3) { | 
					
						
							|  |  |  |                         run_length = get_bits(&gb, 8) + 25; | 
					
						
							|  |  |  |                         bits = get_bits(&gb, 4); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         if (non_mod == 1 && bits == 1) | 
					
						
							|  |  |  |                             pixels_read += run_length; | 
					
						
							|  |  |  |                         else { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                             if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                                 bits = map_table[bits]; | 
					
						
							|  |  |  |                             while (run_length-- > 0 && pixels_read < dbuf_len) { | 
					
						
							|  |  |  |                                 *destbuf++ = bits; | 
					
						
							|  |  |  |                                 pixels_read++; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } else if (bits == 1) { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                         if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                             bits = map_table[0]; | 
					
						
							|  |  |  |                         else | 
					
						
							|  |  |  |                             bits = 0; | 
					
						
							| 
									
										
										
										
											2011-10-14 14:52:33 +02:00
										 |  |  |                         run_length = 2; | 
					
						
							|  |  |  |                         while (run_length-- > 0 && pixels_read < dbuf_len) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                             *destbuf++ = bits; | 
					
						
							| 
									
										
										
										
											2011-10-14 14:52:33 +02:00
										 |  |  |                             pixels_read++; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                     } else { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                         if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                             bits = map_table[0]; | 
					
						
							|  |  |  |                         else | 
					
						
							|  |  |  |                             bits = 0; | 
					
						
							|  |  |  |                         *destbuf++ = bits; | 
					
						
							|  |  |  |                         pixels_read ++; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     if (get_bits(&gb, 8)) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         av_log(0, AV_LOG_ERROR, "DVBSub error: line overflow\n"); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return pixels_read; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int dvbsub_read_8bit_string(uint8_t *destbuf, int dbuf_len, | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |                                     const uint8_t **srcbuf, int buf_size, | 
					
						
							| 
									
										
										
										
											2011-10-14 14:36:56 +02:00
										 |  |  |                                     int non_mod, uint8_t *map_table, int x_pos) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |     const uint8_t *sbuf_end = (*srcbuf) + buf_size; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     int bits; | 
					
						
							|  |  |  |     int run_length; | 
					
						
							| 
									
										
										
										
											2011-10-14 14:36:56 +02:00
										 |  |  |     int pixels_read = x_pos; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     destbuf += x_pos; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     while (*srcbuf < sbuf_end && pixels_read < dbuf_len) { | 
					
						
							|  |  |  |         bits = *(*srcbuf)++; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |         if (bits) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             if (non_mod != 1 || bits != 1) { | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                 if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                     *destbuf++ = map_table[bits]; | 
					
						
							|  |  |  |                 else | 
					
						
							|  |  |  |                     *destbuf++ = bits; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             pixels_read++; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             bits = *(*srcbuf)++; | 
					
						
							|  |  |  |             run_length = bits & 0x7f; | 
					
						
							|  |  |  |             if ((bits & 0x80) == 0) { | 
					
						
							|  |  |  |                 if (run_length == 0) { | 
					
						
							|  |  |  |                     return pixels_read; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                 if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                     bits = map_table[0]; | 
					
						
							|  |  |  |                 else | 
					
						
							|  |  |  |                     bits = 0; | 
					
						
							|  |  |  |                 while (run_length-- > 0 && pixels_read < dbuf_len) { | 
					
						
							|  |  |  |                     *destbuf++ = bits; | 
					
						
							|  |  |  |                     pixels_read++; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 bits = *(*srcbuf)++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 if (non_mod == 1 && bits == 1) | 
					
						
							|  |  |  |                     pixels_read += run_length; | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |                 if (map_table) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                     bits = map_table[bits]; | 
					
						
							|  |  |  |                 else while (run_length-- > 0 && pixels_read < dbuf_len) { | 
					
						
							|  |  |  |                     *destbuf++ = bits; | 
					
						
							|  |  |  |                     pixels_read++; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     if (*(*srcbuf)++) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         av_log(0, AV_LOG_ERROR, "DVBSub error: line overflow\n"); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     return pixels_read; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void dvbsub_parse_pixel_data_block(AVCodecContext *avctx, DVBSubObjectDisplay *display, | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |                                           const uint8_t *buf, int buf_size, int top_bottom, int non_mod) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-11 07:45:42 +00:00
										 |  |  |     DVBSubContext *ctx = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     DVBSubRegion *region = get_region(ctx, display->region_id); | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |     const uint8_t *buf_end = buf + buf_size; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     uint8_t *pbuf; | 
					
						
							|  |  |  |     int x_pos, y_pos; | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     uint8_t map2to4[] = { 0x0,  0x7,  0x8,  0xf}; | 
					
						
							|  |  |  |     uint8_t map2to8[] = {0x00, 0x77, 0x88, 0xff}; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     uint8_t map4to8[] = {0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                          0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff}; | 
					
						
							|  |  |  |     uint8_t *map_table; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 15:38:55 +02:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |     av_dlog(avctx, "DVB pixel block size %d, %s field:\n", buf_size, | 
					
						
							| 
									
										
										
										
											2009-07-30 21:00:08 +00:00
										 |  |  |             top_bottom ? "bottom" : "top"); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:30:00 +00:00
										 |  |  |     for (i = 0; i < buf_size; i++) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         if (i % 16 == 0) | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |             av_dlog(avctx, "0x%8p: ", buf+i); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |         av_dlog(avctx, "%02x ", buf[i]); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         if (i % 16 == 15) | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |             av_dlog(avctx, "\n"); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     if (i % 16) | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |         av_dlog(avctx, "\n"); | 
					
						
							| 
									
										
										
										
											2011-10-14 15:38:55 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (region == 0) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     pbuf = region->pbuf; | 
					
						
							| 
									
										
										
										
											2011-10-14 15:28:50 +02:00
										 |  |  |     region->dirty = 1; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     x_pos = display->x_pos; | 
					
						
							|  |  |  |     y_pos = display->y_pos; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 16:26:38 +02:00
										 |  |  |     y_pos += top_bottom; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     while (buf < buf_end) { | 
					
						
							| 
									
										
										
										
											2011-10-15 21:28:43 +02:00
										 |  |  |         if ((*buf!=0xf0 && x_pos >= region->width) || y_pos >= region->height) { | 
					
						
							| 
									
										
										
										
											2011-10-14 15:39:33 +02:00
										 |  |  |             av_log(avctx, AV_LOG_ERROR, "Invalid object location! %d-%d %d-%d %02x\n", x_pos, region->width, y_pos, region->height, *buf); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         switch (*buf++) { | 
					
						
							|  |  |  |         case 0x10: | 
					
						
							|  |  |  |             if (region->depth == 8) | 
					
						
							|  |  |  |                 map_table = map2to8; | 
					
						
							|  |  |  |             else if (region->depth == 4) | 
					
						
							|  |  |  |                 map_table = map2to4; | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 map_table = NULL; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 14:36:56 +02:00
										 |  |  |             x_pos = dvbsub_read_2bit_string(pbuf + (y_pos * region->width), | 
					
						
							|  |  |  |                                             region->width, &buf, buf_end - buf, | 
					
						
							|  |  |  |                                             non_mod, map_table, x_pos); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x11: | 
					
						
							|  |  |  |             if (region->depth < 4) { | 
					
						
							|  |  |  |                 av_log(avctx, AV_LOG_ERROR, "4-bit pixel string in %d-bit region!\n", region->depth); | 
					
						
							|  |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             if (region->depth == 8) | 
					
						
							|  |  |  |                 map_table = map4to8; | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 map_table = NULL; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 14:36:56 +02:00
										 |  |  |             x_pos = dvbsub_read_4bit_string(pbuf + (y_pos * region->width), | 
					
						
							|  |  |  |                                             region->width, &buf, buf_end - buf, | 
					
						
							|  |  |  |                                             non_mod, map_table, x_pos); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case 0x12: | 
					
						
							|  |  |  |             if (region->depth < 8) { | 
					
						
							|  |  |  |                 av_log(avctx, AV_LOG_ERROR, "8-bit pixel string in %d-bit region!\n", region->depth); | 
					
						
							|  |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 14:36:56 +02:00
										 |  |  |             x_pos = dvbsub_read_8bit_string(pbuf + (y_pos * region->width), | 
					
						
							|  |  |  |                                             region->width, &buf, buf_end - buf, | 
					
						
							|  |  |  |                                             non_mod, NULL, x_pos); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         case 0x20: | 
					
						
							|  |  |  |             map2to4[0] = (*buf) >> 4; | 
					
						
							|  |  |  |             map2to4[1] = (*buf++) & 0xf; | 
					
						
							|  |  |  |             map2to4[2] = (*buf) >> 4; | 
					
						
							|  |  |  |             map2to4[3] = (*buf++) & 0xf; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 0x21: | 
					
						
							|  |  |  |             for (i = 0; i < 4; i++) | 
					
						
							|  |  |  |                 map2to8[i] = *buf++; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 0x22: | 
					
						
							|  |  |  |             for (i = 0; i < 16; i++) | 
					
						
							|  |  |  |                 map4to8[i] = *buf++; | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         case 0xf0: | 
					
						
							|  |  |  |             x_pos = display->x_pos; | 
					
						
							|  |  |  |             y_pos += 2; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             av_log(avctx, AV_LOG_INFO, "Unknown/unsupported pixel block 0x%x\n", *(buf-1)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void dvbsub_parse_object_segment(AVCodecContext *avctx, | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |                                         const uint8_t *buf, int buf_size) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-11 07:45:42 +00:00
										 |  |  |     DVBSubContext *ctx = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |     const uint8_t *buf_end = buf + buf_size; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     int object_id; | 
					
						
							|  |  |  |     DVBSubObject *object; | 
					
						
							|  |  |  |     DVBSubObjectDisplay *display; | 
					
						
							|  |  |  |     int top_field_len, bottom_field_len; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-03 13:33:48 +00:00
										 |  |  |     int coding_method, non_modifying_color; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |     object_id = AV_RB16(buf); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     buf += 2; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     object = get_object(ctx, object_id); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |     if (!object) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     coding_method = ((*buf) >> 2) & 3; | 
					
						
							| 
									
										
										
										
											2007-12-03 13:33:48 +00:00
										 |  |  |     non_modifying_color = ((*buf++) >> 1) & 1; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     if (coding_method == 0) { | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |         top_field_len = AV_RB16(buf); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         buf += 2; | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |         bottom_field_len = AV_RB16(buf); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         buf += 2; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         if (buf + top_field_len + bottom_field_len > buf_end) { | 
					
						
							|  |  |  |             av_log(avctx, AV_LOG_ERROR, "Field data size too large\n"); | 
					
						
							|  |  |  |             return; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |         for (display = object->display_list; display; display = display->object_list_next) { | 
					
						
							| 
									
										
										
										
											2011-10-14 15:49:40 +02:00
										 |  |  |             const uint8_t *block = buf; | 
					
						
							|  |  |  |             int bfl = bottom_field_len; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             dvbsub_parse_pixel_data_block(avctx, display, block, top_field_len, 0, | 
					
						
							| 
									
										
										
										
											2007-12-03 13:33:48 +00:00
										 |  |  |                                             non_modifying_color); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (bottom_field_len > 0) | 
					
						
							|  |  |  |                 block = buf + top_field_len; | 
					
						
							|  |  |  |             else | 
					
						
							| 
									
										
										
										
											2011-10-14 15:49:40 +02:00
										 |  |  |                 bfl = top_field_len; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 15:49:40 +02:00
										 |  |  |             dvbsub_parse_pixel_data_block(avctx, display, block, bfl, 1, | 
					
						
							| 
									
										
										
										
											2007-12-03 13:33:48 +00:00
										 |  |  |                                             non_modifying_color); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | /*  } else if (coding_method == 1) {*/ | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_ERROR, "Unknown object coding %d\n", coding_method); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void dvbsub_parse_clut_segment(AVCodecContext *avctx, | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |                                         const uint8_t *buf, int buf_size) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-11 07:45:42 +00:00
										 |  |  |     DVBSubContext *ctx = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |     const uint8_t *buf_end = buf + buf_size; | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |     int i, clut_id; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     int version; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     DVBSubCLUT *clut; | 
					
						
							|  |  |  |     int entry_id, depth , full_range; | 
					
						
							|  |  |  |     int y, cr, cb, alpha; | 
					
						
							|  |  |  |     int r, g, b, r_add, g_add, b_add; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |     av_dlog(avctx, "DVB clut packet:\n"); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:30:00 +00:00
										 |  |  |     for (i=0; i < buf_size; i++) { | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |         av_dlog(avctx, "%02x ", buf[i]); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         if (i % 16 == 15) | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |             av_dlog(avctx, "\n"); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     if (i % 16) | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |         av_dlog(avctx, "\n"); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     clut_id = *buf++; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     version = ((*buf)>>4)&15; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     buf += 1; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     clut = get_clut(ctx, clut_id); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:33:25 +00:00
										 |  |  |     if (!clut) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         clut = av_malloc(sizeof(DVBSubCLUT)); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         memcpy(clut, &default_clut, sizeof(DVBSubCLUT)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         clut->id = clut_id; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |         clut->version = -1; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         clut->next = ctx->clut_list; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         ctx->clut_list = clut; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     if (clut->version != version) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     clut->version = version; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:30:00 +00:00
										 |  |  |     while (buf + 4 < buf_end) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         entry_id = *buf++; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         depth = (*buf) & 0xe0; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         if (depth == 0) { | 
					
						
							|  |  |  |             av_log(avctx, AV_LOG_ERROR, "Invalid clut depth 0x%x!\n", *buf); | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         full_range = (*buf++) & 1; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         if (full_range) { | 
					
						
							|  |  |  |             y = *buf++; | 
					
						
							|  |  |  |             cr = *buf++; | 
					
						
							|  |  |  |             cb = *buf++; | 
					
						
							|  |  |  |             alpha = *buf++; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             y = buf[0] & 0xfc; | 
					
						
							|  |  |  |             cr = (((buf[0] & 3) << 2) | ((buf[1] >> 6) & 3)) << 4; | 
					
						
							|  |  |  |             cb = (buf[1] << 2) & 0xf0; | 
					
						
							|  |  |  |             alpha = (buf[1] << 6) & 0xc0; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             buf += 2; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         if (y == 0) | 
					
						
							|  |  |  |             alpha = 0xff; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         YUV_TO_RGB1_CCIR(cb, cr); | 
					
						
							|  |  |  |         YUV_TO_RGB2_CCIR(r, g, b, y); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |         av_dlog(avctx, "clut %d := (%d,%d,%d,%d)\n", entry_id, r, g, b, alpha); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         if (depth & 0x80) | 
					
						
							|  |  |  |             clut->clut4[entry_id] = RGBA(r,g,b,255 - alpha); | 
					
						
							|  |  |  |         if (depth & 0x40) | 
					
						
							|  |  |  |             clut->clut16[entry_id] = RGBA(r,g,b,255 - alpha); | 
					
						
							|  |  |  |         if (depth & 0x20) | 
					
						
							|  |  |  |             clut->clut256[entry_id] = RGBA(r,g,b,255 - alpha); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void dvbsub_parse_region_segment(AVCodecContext *avctx, | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |                                         const uint8_t *buf, int buf_size) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-11 07:45:42 +00:00
										 |  |  |     DVBSubContext *ctx = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |     const uint8_t *buf_end = buf + buf_size; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     int region_id, object_id; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     int version; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     DVBSubRegion *region; | 
					
						
							|  |  |  |     DVBSubObject *object; | 
					
						
							|  |  |  |     DVBSubObjectDisplay *display; | 
					
						
							|  |  |  |     int fill; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     if (buf_size < 10) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     region_id = *buf++; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     region = get_region(ctx, region_id); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:33:25 +00:00
										 |  |  |     if (!region) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         region = av_mallocz(sizeof(DVBSubRegion)); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         region->id = region_id; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |         region->version = -1; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         region->next = ctx->region_list; | 
					
						
							|  |  |  |         ctx->region_list = region; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     version = ((*buf)>>4) & 15; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     fill = ((*buf++) >> 3) & 1; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |     region->width = AV_RB16(buf); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     buf += 2; | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |     region->height = AV_RB16(buf); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     buf += 2; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     if (region->width * region->height != region->buf_size) { | 
					
						
							| 
									
										
										
										
											2011-02-03 02:09:36 +01:00
										 |  |  |         av_free(region->pbuf); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         region->buf_size = region->width * region->height; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         region->pbuf = av_malloc(region->buf_size); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         fill = 1; | 
					
						
							| 
									
										
										
										
											2011-10-14 15:28:50 +02:00
										 |  |  |         region->dirty = 0; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     region->depth = 1 << (((*buf++) >> 2) & 7); | 
					
						
							| 
									
										
										
										
											2007-11-19 20:14:46 +00:00
										 |  |  |     if(region->depth<2 || region->depth>8){ | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_ERROR, "region depth %d is invalid\n", region->depth); | 
					
						
							|  |  |  |         region->depth= 4; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     region->clut = *buf++; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 16:08:06 +02:00
										 |  |  |     if (region->depth == 8) { | 
					
						
							| 
									
										
										
										
											2007-12-03 13:33:48 +00:00
										 |  |  |         region->bgcolor = *buf++; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:08:06 +02:00
										 |  |  |         buf += 1; | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         buf += 1; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         if (region->depth == 4) | 
					
						
							| 
									
										
										
										
											2007-12-03 13:33:48 +00:00
										 |  |  |             region->bgcolor = (((*buf++) >> 4) & 15); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2007-12-03 13:33:48 +00:00
										 |  |  |             region->bgcolor = (((*buf++) >> 2) & 3); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |     av_dlog(avctx, "Region %d, (%dx%d)\n", region_id, region->width, region->height); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (fill) { | 
					
						
							| 
									
										
										
										
											2007-12-03 13:33:48 +00:00
										 |  |  |         memset(region->pbuf, region->bgcolor, region->buf_size); | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |         av_dlog(avctx, "Fill region (%d)\n", region->bgcolor); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     delete_region_display_list(ctx, region); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (buf + 5 < buf_end) { | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |         object_id = AV_RB16(buf); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         buf += 2; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         object = get_object(ctx, object_id); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:33:25 +00:00
										 |  |  |         if (!object) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             object = av_mallocz(sizeof(DVBSubObject)); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             object->id = object_id; | 
					
						
							|  |  |  |             object->next = ctx->object_list; | 
					
						
							|  |  |  |             ctx->object_list = object; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         object->type = (*buf) >> 6; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         display = av_mallocz(sizeof(DVBSubObjectDisplay)); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         display->object_id = object_id; | 
					
						
							|  |  |  |         display->region_id = region_id; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |         display->x_pos = AV_RB16(buf) & 0xfff; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         buf += 2; | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |         display->y_pos = AV_RB16(buf) & 0xfff; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         buf += 2; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         if ((object->type == 1 || object->type == 2) && buf+1 < buf_end) { | 
					
						
							| 
									
										
										
										
											2007-12-03 13:33:48 +00:00
										 |  |  |             display->fgcolor = *buf++; | 
					
						
							|  |  |  |             display->bgcolor = *buf++; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         display->region_list_next = region->display_list; | 
					
						
							|  |  |  |         region->display_list = display; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         display->object_list_next = object->display_list; | 
					
						
							|  |  |  |         object->display_list = display; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void dvbsub_parse_page_segment(AVCodecContext *avctx, | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |                                         const uint8_t *buf, int buf_size) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-11 07:45:42 +00:00
										 |  |  |     DVBSubContext *ctx = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     DVBSubRegionDisplay *display; | 
					
						
							|  |  |  |     DVBSubRegionDisplay *tmp_display_list, **tmp_ptr; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |     const uint8_t *buf_end = buf + buf_size; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     int region_id; | 
					
						
							|  |  |  |     int page_state; | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     int timeout; | 
					
						
							|  |  |  |     int version; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     if (buf_size < 1) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     timeout = *buf++; | 
					
						
							|  |  |  |     version = ((*buf)>>4) & 15; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     page_state = ((*buf++) >> 2) & 3; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     if (ctx->version != version) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ctx->time_out = timeout; | 
					
						
							|  |  |  |     ctx->version = version; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |     av_dlog(avctx, "Page time out %ds, state %d\n", ctx->time_out, page_state); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 16:33:34 +02:00
										 |  |  |     if (page_state == 1 || page_state == 2) { | 
					
						
							| 
									
										
										
										
											2011-05-04 20:44:14 +02:00
										 |  |  |         delete_regions(ctx); | 
					
						
							|  |  |  |         delete_objects(ctx); | 
					
						
							|  |  |  |         delete_cluts(ctx); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     tmp_display_list = ctx->display_list; | 
					
						
							|  |  |  |     ctx->display_list = NULL; | 
					
						
							|  |  |  |     ctx->display_list_size = 0; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     while (buf + 5 < buf_end) { | 
					
						
							|  |  |  |         region_id = *buf++; | 
					
						
							|  |  |  |         buf += 1; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         display = tmp_display_list; | 
					
						
							|  |  |  |         tmp_ptr = &tmp_display_list; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |         while (display && display->region_id != region_id) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             tmp_ptr = &display->next; | 
					
						
							|  |  |  |             display = display->next; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:33:25 +00:00
										 |  |  |         if (!display) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             display = av_mallocz(sizeof(DVBSubRegionDisplay)); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         display->region_id = region_id; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |         display->x_pos = AV_RB16(buf); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         buf += 2; | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |         display->y_pos = AV_RB16(buf); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         buf += 2; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         *tmp_ptr = display->next; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         display->next = ctx->display_list; | 
					
						
							|  |  |  |         ctx->display_list = display; | 
					
						
							|  |  |  |         ctx->display_list_size++; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |         av_dlog(avctx, "Region %d, (%d,%d)\n", region_id, display->x_pos, display->y_pos); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     while (tmp_display_list) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         display = tmp_display_list; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         tmp_display_list = display->next; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         av_free(display); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-10-14 16:41:21 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-06 00:53:31 +02:00
										 |  |  | #ifdef DEBUG
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | static void save_display_set(DVBSubContext *ctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DVBSubRegion *region; | 
					
						
							|  |  |  |     DVBSubRegionDisplay *display; | 
					
						
							|  |  |  |     DVBSubCLUT *clut; | 
					
						
							|  |  |  |     uint32_t *clut_table; | 
					
						
							|  |  |  |     int x_pos, y_pos, width, height; | 
					
						
							|  |  |  |     int x, y, y_off, x_off; | 
					
						
							|  |  |  |     uint32_t *pbuf; | 
					
						
							|  |  |  |     char filename[32]; | 
					
						
							|  |  |  |     static int fileno_index = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     x_pos = -1; | 
					
						
							|  |  |  |     y_pos = -1; | 
					
						
							|  |  |  |     width = 0; | 
					
						
							|  |  |  |     height = 0; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     for (display = ctx->display_list; display; display = display->next) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         region = get_region(ctx, display->region_id); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         if (x_pos == -1) { | 
					
						
							|  |  |  |             x_pos = display->x_pos; | 
					
						
							|  |  |  |             y_pos = display->y_pos; | 
					
						
							|  |  |  |             width = region->width; | 
					
						
							|  |  |  |             height = region->height; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             if (display->x_pos < x_pos) { | 
					
						
							|  |  |  |                 width += (x_pos - display->x_pos); | 
					
						
							|  |  |  |                 x_pos = display->x_pos; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             if (display->y_pos < y_pos) { | 
					
						
							|  |  |  |                 height += (y_pos - display->y_pos); | 
					
						
							|  |  |  |                 y_pos = display->y_pos; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             if (display->x_pos + region->width > x_pos + width) { | 
					
						
							|  |  |  |                 width = display->x_pos + region->width - x_pos; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             if (display->y_pos + region->height > y_pos + height) { | 
					
						
							|  |  |  |                 height = display->y_pos + region->height - y_pos; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     if (x_pos >= 0) { | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         pbuf = av_malloc(width * height * 4); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |         for (display = ctx->display_list; display; display = display->next) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             region = get_region(ctx, display->region_id); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             x_off = display->x_pos - x_pos; | 
					
						
							|  |  |  |             y_off = display->y_pos - y_pos; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             clut = get_clut(ctx, region->clut); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (clut == 0) | 
					
						
							|  |  |  |                 clut = &default_clut; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             switch (region->depth) { | 
					
						
							|  |  |  |             case 2: | 
					
						
							|  |  |  |                 clut_table = clut->clut4; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 8: | 
					
						
							|  |  |  |                 clut_table = clut->clut256; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 4: | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 clut_table = clut->clut16; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             for (y = 0; y < region->height; y++) { | 
					
						
							|  |  |  |                 for (x = 0; x < region->width; x++) { | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |                     pbuf[((y + y_off) * width) + x_off + x] = | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                         clut_table[region->pbuf[y * region->width + x]]; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:18:30 +00:00
										 |  |  |         snprintf(filename, sizeof(filename), "dvbs.%d", fileno_index); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         png_save2(filename, pbuf, width, height); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         av_free(pbuf); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     fileno_index++; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-16 13:07:12 +00:00
										 |  |  | static void dvbsub_parse_display_definition_segment(AVCodecContext *avctx, | 
					
						
							|  |  |  |                                                     const uint8_t *buf, | 
					
						
							|  |  |  |                                                     int buf_size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DVBSubContext *ctx = avctx->priv_data; | 
					
						
							|  |  |  |     DVBSubDisplayDefinition *display_def = ctx->display_definition; | 
					
						
							|  |  |  |     int dds_version, info_byte; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (buf_size < 5) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     info_byte   = bytestream_get_byte(&buf); | 
					
						
							|  |  |  |     dds_version = info_byte >> 4; | 
					
						
							|  |  |  |     if (display_def && display_def->version == dds_version) | 
					
						
							|  |  |  |         return; // already have this display definition version
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!display_def) { | 
					
						
							|  |  |  |         display_def             = av_mallocz(sizeof(*display_def)); | 
					
						
							|  |  |  |         ctx->display_definition = display_def; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!display_def) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     display_def->version = dds_version; | 
					
						
							|  |  |  |     display_def->x       = 0; | 
					
						
							|  |  |  |     display_def->y       = 0; | 
					
						
							|  |  |  |     display_def->width   = bytestream_get_be16(&buf) + 1; | 
					
						
							|  |  |  |     display_def->height  = bytestream_get_be16(&buf) + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (buf_size < 13) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (info_byte & 1<<3) { // display_window_flag
 | 
					
						
							|  |  |  |         display_def->x = bytestream_get_be16(&buf); | 
					
						
							|  |  |  |         display_def->y = bytestream_get_be16(&buf); | 
					
						
							|  |  |  |         display_def->width  = bytestream_get_be16(&buf) - display_def->x + 1; | 
					
						
							|  |  |  |         display_def->height = bytestream_get_be16(&buf) - display_def->y + 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  | static int dvbsub_display_end_segment(AVCodecContext *avctx, const uint8_t *buf, | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                                         int buf_size, AVSubtitle *sub) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-07-11 07:45:42 +00:00
										 |  |  |     DVBSubContext *ctx = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2010-06-16 13:07:12 +00:00
										 |  |  |     DVBSubDisplayDefinition *display_def = ctx->display_definition; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     DVBSubRegion *region; | 
					
						
							|  |  |  |     DVBSubRegionDisplay *display; | 
					
						
							|  |  |  |     AVSubtitleRect *rect; | 
					
						
							|  |  |  |     DVBSubCLUT *clut; | 
					
						
							|  |  |  |     uint32_t *clut_table; | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2010-06-16 13:07:12 +00:00
										 |  |  |     int offset_x=0, offset_y=0; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     sub->end_display_time = ctx->time_out * 1000; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-16 13:07:12 +00:00
										 |  |  |     if (display_def) { | 
					
						
							|  |  |  |         offset_x = display_def->x; | 
					
						
							|  |  |  |         offset_y = display_def->y; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     sub->num_rects = ctx->display_list_size; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-03 17:54:48 +00:00
										 |  |  |     if (sub->num_rects > 0){ | 
					
						
							|  |  |  |         sub->rects = av_mallocz(sizeof(*sub->rects) * sub->num_rects); | 
					
						
							|  |  |  |         for(i=0; i<sub->num_rects; i++) | 
					
						
							|  |  |  |             sub->rects[i] = av_mallocz(sizeof(*sub->rects[i])); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     i = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     for (display = ctx->display_list; display; display = display->next) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         region = get_region(ctx, display->region_id); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:33:25 +00:00
										 |  |  |         if (!region) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             continue; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 15:28:50 +02:00
										 |  |  |         if (!region->dirty) | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         rect = sub->rects[i]; | 
					
						
							| 
									
										
										
										
											2010-06-16 13:07:12 +00:00
										 |  |  |         rect->x = display->x_pos + offset_x; | 
					
						
							|  |  |  |         rect->y = display->y_pos + offset_y; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         rect->w = region->width; | 
					
						
							|  |  |  |         rect->h = region->height; | 
					
						
							| 
									
										
										
										
											2011-09-10 23:12:29 +02:00
										 |  |  |         rect->nb_colors = (1 << region->depth); | 
					
						
							| 
									
										
										
										
											2009-07-14 23:12:43 +00:00
										 |  |  |         rect->type      = SUBTITLE_BITMAP; | 
					
						
							| 
									
										
										
										
											2009-01-03 19:17:18 +00:00
										 |  |  |         rect->pict.linesize[0] = region->width; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         clut = get_clut(ctx, region->clut); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:33:25 +00:00
										 |  |  |         if (!clut) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             clut = &default_clut; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         switch (region->depth) { | 
					
						
							|  |  |  |         case 2: | 
					
						
							|  |  |  |             clut_table = clut->clut4; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 8: | 
					
						
							|  |  |  |             clut_table = clut->clut256; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 4: | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             clut_table = clut->clut16; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-20 18:54:50 +00:00
										 |  |  |         rect->pict.data[1] = av_mallocz(AVPALETTE_SIZE); | 
					
						
							| 
									
										
										
										
											2009-01-03 19:17:18 +00:00
										 |  |  |         memcpy(rect->pict.data[1], clut_table, (1 << region->depth) * sizeof(uint32_t)); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-03 19:17:18 +00:00
										 |  |  |         rect->pict.data[0] = av_malloc(region->buf_size); | 
					
						
							|  |  |  |         memcpy(rect->pict.data[0], region->pbuf, region->buf_size); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         i++; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     sub->num_rects = i; | 
					
						
							| 
									
										
										
										
											2011-10-15 20:16:31 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-06-06 00:53:31 +02:00
										 |  |  | #ifdef DEBUG
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     save_display_set(ctx); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int dvbsub_decode(AVCodecContext *avctx, | 
					
						
							|  |  |  |                          void *data, int *data_size, | 
					
						
							| 
									
										
										
										
											2009-04-07 15:59:50 +00:00
										 |  |  |                          AVPacket *avpkt) | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-04-07 15:59:50 +00:00
										 |  |  |     const uint8_t *buf = avpkt->data; | 
					
						
							|  |  |  |     int buf_size = avpkt->size; | 
					
						
							| 
									
										
										
										
											2010-07-11 07:45:42 +00:00
										 |  |  |     DVBSubContext *ctx = avctx->priv_data; | 
					
						
							|  |  |  |     AVSubtitle *sub = data; | 
					
						
							| 
									
										
										
										
											2008-02-01 03:26:31 +00:00
										 |  |  |     const uint8_t *p, *p_end; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     int segment_type; | 
					
						
							|  |  |  |     int page_id; | 
					
						
							|  |  |  |     int segment_length; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |     av_dlog(avctx, "DVB sub packet:\n"); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:30:00 +00:00
										 |  |  |     for (i=0; i < buf_size; i++) { | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |         av_dlog(avctx, "%02x ", buf[i]); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         if (i % 16 == 15) | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |             av_dlog(avctx, "\n"); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-19 20:26:35 +00:00
										 |  |  |     if (i % 16) | 
					
						
							| 
									
										
										
										
											2011-06-06 01:25:32 +02:00
										 |  |  |         av_dlog(avctx, "\n"); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-09 23:23:22 +01:00
										 |  |  |     if (buf_size <= 6 || *buf != 0x0f) { | 
					
						
							|  |  |  |         av_dlog(avctx, "incomplete or broken packet"); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2011-02-09 23:23:22 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |     p = buf; | 
					
						
							|  |  |  |     p_end = buf + buf_size; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-09 23:23:22 +01:00
										 |  |  |     while (p_end - p >= 6 && *p == 0x0f) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         p += 1; | 
					
						
							|  |  |  |         segment_type = *p++; | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |         page_id = AV_RB16(p); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         p += 2; | 
					
						
							| 
									
										
										
										
											2007-01-19 22:12:59 +00:00
										 |  |  |         segment_length = AV_RB16(p); | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |         p += 2; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-09 23:23:22 +01:00
										 |  |  |         if (p_end - p < segment_length) { | 
					
						
							|  |  |  |             av_dlog(avctx, "incomplete or broken packet"); | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-14 17:28:40 +00:00
										 |  |  |         if (page_id == ctx->composition_id || page_id == ctx->ancillary_id || | 
					
						
							|  |  |  |             ctx->composition_id == -1 || ctx->ancillary_id == -1) { | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             switch (segment_type) { | 
					
						
							|  |  |  |             case DVBSUB_PAGE_SEGMENT: | 
					
						
							|  |  |  |                 dvbsub_parse_page_segment(avctx, p, segment_length); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case DVBSUB_REGION_SEGMENT: | 
					
						
							|  |  |  |                 dvbsub_parse_region_segment(avctx, p, segment_length); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case DVBSUB_CLUT_SEGMENT: | 
					
						
							|  |  |  |                 dvbsub_parse_clut_segment(avctx, p, segment_length); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case DVBSUB_OBJECT_SEGMENT: | 
					
						
							|  |  |  |                 dvbsub_parse_object_segment(avctx, p, segment_length); | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2010-06-16 13:07:12 +00:00
										 |  |  |             case DVBSUB_DISPLAYDEFINITION_SEGMENT: | 
					
						
							|  |  |  |                 dvbsub_parse_display_definition_segment(avctx, p, segment_length); | 
					
						
							| 
									
										
										
										
											2011-07-11 10:11:04 +02:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |             case DVBSUB_DISPLAY_SEGMENT: | 
					
						
							|  |  |  |                 *data_size = dvbsub_display_end_segment(avctx, p, segment_length, sub); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							| 
									
										
										
										
											2011-01-29 17:46:18 +01:00
										 |  |  |                 av_dlog(avctx, "Subtitling segment type 0x%x, page id %d, length %d\n", | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  |                         segment_type, page_id, segment_length); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         p += segment_length; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-09 19:32:07 +01:00
										 |  |  |     return p - buf; | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 21:40:11 +00:00
										 |  |  | AVCodec ff_dvbsub_decoder = { | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .name           = "dvbsub", | 
					
						
							|  |  |  |     .type           = AVMEDIA_TYPE_SUBTITLE, | 
					
						
							|  |  |  |     .id             = CODEC_ID_DVB_SUBTITLE, | 
					
						
							|  |  |  |     .priv_data_size = sizeof(DVBSubContext), | 
					
						
							|  |  |  |     .init           = dvbsub_init_decoder, | 
					
						
							|  |  |  |     .close          = dvbsub_close_decoder, | 
					
						
							|  |  |  |     .decode         = dvbsub_decode, | 
					
						
							| 
									
										
										
										
											2008-06-12 21:50:13 +00:00
										 |  |  |     .long_name = NULL_IF_CONFIG_SMALL("DVB subtitles"), | 
					
						
							| 
									
										
										
										
											2005-07-17 00:28:12 +00:00
										 |  |  | }; |