Commit a1c4ba2f authored by Rocky Bernstein's avatar Rocky Bernstein

Keep in synch with rest of source. Should also have no effect on upcoming release

parent 1170be35
This diff is collapsed.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* ogt.h : Overlay Graphics Text (SVCD subtitles) decoder thread interface * ogt.h : Overlay Graphics Text (SVCD subtitles) decoder thread interface
***************************************************************************** *****************************************************************************
* Copyright (C) 2003 VideoLAN * Copyright (C) 2003 VideoLAN
* $Id: ogt.h,v 1.3 2003/12/22 14:32:55 sam Exp $ * $Id: ogt.h,v 1.4 2003/12/26 02:47:59 rocky Exp $
* *
* Author: Rocky Bernstein * Author: Rocky Bernstein
* based on code from: * based on code from:
...@@ -27,7 +27,8 @@ ...@@ -27,7 +27,8 @@
#define DECODE_DBG_EXT 1 /* Calls from external routines */ #define DECODE_DBG_EXT 1 /* Calls from external routines */
#define DECODE_DBG_CALL 2 /* all calls */ #define DECODE_DBG_CALL 2 /* all calls */
#define DECODE_DBG_PACKET 4 /* packet assembly info */ #define DECODE_DBG_PACKET 4 /* packet assembly info */
#define DECODE_DBG_INFO 8 #define DECODE_DBG_IMAGE 8 /* image bitmaps */
#define DECODE_DBG_INFO 16
#define DECODE_DEBUG 1 #define DECODE_DEBUG 1
#if DECODE_DEBUG #if DECODE_DEBUG
...@@ -46,63 +47,77 @@ ...@@ -46,63 +47,77 @@
#define GETINT32(p) ( (p[0] << 24) + (p[1] << 16) + \ #define GETINT32(p) ( (p[0] << 24) + (p[1] << 16) + \
(p[2] << 8) + (p[3]) ) ; p += 4; (p[2] << 8) + (p[3]) ) ; p += 4;
/* The number of color palette entries allowed in a subtitle. */
#define NUM_SUBTITLE_COLORS 4
typedef enum { typedef enum {
SUBTITLE_BLOCK_EMPTY, SUBTITLE_BLOCK_EMPTY,
SUBTITLE_BLOCK_PARTIAL, SUBTITLE_BLOCK_PARTIAL,
SUBTITLE_BLOCK_COMPLETE SUBTITLE_BLOCK_COMPLETE
} packet_state_t; } packet_state_t;
/* FIXME: REMOVE THE BELOW. */
/* Color and transparency of a pixel or a palette (CLUT) entry */ /* Color and transparency of a pixel or a palette (CLUT) entry */
typedef struct ogt_yuvt_val_s { typedef struct ogt_yuvt_val_s {
uint8_t y; uint8_t y;
uint8_t u; uint8_t u;
uint8_t v; uint8_t v;
uint8_t t; uint8_t t;
} ogt_yuvt_val_t; } ogt_yuvt_t;
struct decoder_sys_t /* The storage used by one pixel */
{ #define PIXEL_SIZE 4
int i_debug; /* debugging mask */
int b_packetizer; /* Size in bytes of YUV portion above. */
#define YUV_SIZE 3
mtime_t i_pts; /* Start PTS of subtitle block */ /* Transparency plane. NOTE: see vlc_video.h for V_PLANE */
int i_spu_size; /* size of the allocated subtitle_data */ #define T_PLANE V_PLANE+1
int i_spu;
packet_state_t state; /* data-gathering state for this subtitle */
uint16_t i_image; /* image number in the subtitle stream; 0 is the
first one. */
uint8_t i_packet; /* packet number for above image number; 0 is the
first one. */
block_t *p_block; /* Bytes of the packet. */ struct decoder_sys_t
{
uint8_t buffer[65536 + 20 ]; /* we will never overflow more than 11 bytes if I'm right */ int i_debug; /* debugging mask */
mtime_t i_pts; /* Start PTS of subtitle block */
int i_spu;
packet_state_t state; /* data-gathering state for this subtitle */
uint16_t i_image; /* image number in the subtitle stream; 0 is the
first one. */
uint8_t i_packet;/* packet number for above image number; 0 is the
first one. */
block_t *p_block;/* Bytes of the packet. */
uint8_t buffer[65536 + 20 ]; /* we will never overflow more than 11
bytes if I'm right */
int b_packetizer;
int i_spu_size; /* goal for subtitle_data_pos while gathering,
size of used subtitle_data later */
vout_thread_t *p_vout; vout_thread_t *p_vout;
/* Move into subpicture_sys_t? */ /* FIXME: Remove this? */
uint16_t comp_image_offset; /* offset from subtitle_data to compressed uint8_t *subtitle_data; /* buffer used to accumulate data from
image data */ successive packets in the same subtitle */
int comp_image_length; /* size of the compressed image data */ int subtitle_data_size; /* size of the allocated subtitle_data */
int first_field_offset;
int second_field_offset;
/* Move into subpicture_sys_t? */
uint16_t comp_image_offset; /* offset from subtitle_data to compressed
image data */
int comp_image_length; /* size of the compressed image data */
int second_field_offset; /* offset of odd raster lines */
int metadata_offset; /* offset to data describing the image */ int metadata_offset; /* offset to data describing the image */
int metadata_length; /* length of metadata */ int metadata_length; /* length of metadata */
int subtitle_data_pos; /* where to write next chunk */ int subtitle_data_pos; /* where to write next chunk */
int subtitle_data_length; /* goal for subtitle_data_pos while gathering,
length of used subtitle_data later */
uint32_t i_duration; /* how long to display the image, 0 stands uint32_t i_duration; /* how long to display the image, 0 stands
for "until next subtitle" */ for "until next subtitle" */
uint16_t i_x_start, i_y_start; /* position of top leftmost pixel of uint16_t i_x_start, i_y_start; /* position of top leftmost pixel of
image when displayed */ image when displayed */
uint16_t i_width, i_height; /* dimensions in pixels of image */ uint16_t i_width, i_height; /* dimensions in pixels of image */
ogt_yuvt_val_t pi_palette[4]; ogt_yuvt_t pi_palette[NUM_SUBTITLE_COLORS];
uint8_t i_options; uint8_t i_options;
uint8_t i_options2; uint8_t i_options2;
...@@ -112,33 +127,26 @@ struct decoder_sys_t ...@@ -112,33 +127,26 @@ struct decoder_sys_t
struct subpicture_sys_t struct subpicture_sys_t
{ {
mtime_t i_pts; /* presentation timestamp */ mtime_t i_pts; /* presentation timestamp */
int pi_offset[2]; /* byte offsets to data */ u_int8_t *p_data; /* Image data one byte T, Y, U, V */
void *p_data;
/* Color information */
/* Color information */ vlc_bool_t b_palette;
vlc_bool_t b_palette;
ogt_yuvt_val_t pi_palette[4]; /* Link to our input */
vlc_object_t * p_input;
#ifndef FIXED
uint8_t pi_alpha[4]; /* Cropping properties */
uint8_t pi_yuv[4][3]; vlc_mutex_t lock;
#endif vlc_bool_t b_crop;
unsigned int i_x_start, i_y_start, i_x_end, i_y_end;
/* Link to our input */
vlc_object_t * p_input;
/* Cropping properties */
vlc_mutex_t lock;
vlc_bool_t b_crop;
unsigned int i_x_start, i_y_start, i_x_end, i_y_end;
}; };
/***************************************************************************** /*****************************************************************************
* Prototypes * Prototypes
*****************************************************************************/ *****************************************************************************/
void E_(ParseHeader)( decoder_t *, uint8_t *, block_t * );
void E_(ParsePacket)( decoder_t * ); void E_(ParsePacket)( decoder_t * );
void E_(RenderSPU) ( vout_thread_t *, picture_t *, const subpicture_t * ); void E_(RenderSPU) ( vout_thread_t *, picture_t *, const subpicture_t * );
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment