summaryrefslogtreecommitdiff
path: root/src/xine-engine
diff options
context:
space:
mode:
Diffstat (limited to 'src/xine-engine')
-rw-r--r--src/xine-engine/alphablend.h8
-rw-r--r--src/xine-engine/audio_out.c15
-rw-r--r--src/xine-engine/events.c3
-rw-r--r--src/xine-engine/info_helper.c5
-rw-r--r--src/xine-engine/load_plugins.c26
-rw-r--r--src/xine-engine/scratch.c3
-rw-r--r--src/xine-engine/xine.c5
7 files changed, 34 insertions, 31 deletions
diff --git a/src/xine-engine/alphablend.h b/src/xine-engine/alphablend.h
index 30806cd5e..513ac116f 100644
--- a/src/xine-engine/alphablend.h
+++ b/src/xine-engine/alphablend.h
@@ -59,10 +59,10 @@ void _x_alphablend_free(alphablend_t *extra_data) XINE_PROTECTED;
#endif
typedef struct { /* CLUT == Color LookUp Table */
- uint8_t cb : 8;
- uint8_t cr : 8;
- uint8_t y : 8;
- uint8_t foo : 8;
+ uint8_t cb;
+ uint8_t cr;
+ uint8_t y;
+ uint8_t foo;
} ATTRIBUTE_PACKED clut_t;
diff --git a/src/xine-engine/audio_out.c b/src/xine-engine/audio_out.c
index 1475a10c2..59ac6f585 100644
--- a/src/xine-engine/audio_out.c
+++ b/src/xine-engine/audio_out.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000-2005 the xine project
+ * Copyright (C) 2000-2006 the xine project
*
* This file is part of xine, a free video player.
*
@@ -17,7 +17,7 @@
* along with self program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: audio_out.c,v 1.205 2006/09/26 01:13:18 dgp85 Exp $
+ * $Id: audio_out.c,v 1.206 2006/10/16 22:18:24 valtri Exp $
*
* 22-8-2001 James imported some useful AC3 sections from the previous alsa driver.
* (c) 2001 Andy Lo A Foe <andy@alsaplayer.org>
@@ -422,10 +422,14 @@ static void fifo_wait_empty (audio_fifo_t *fifo) {
static void write_pause_burst(aos_t *this, uint32_t num_frames) {
+ uint16_t sbuf[4096];
+
+ sbuf[0] = 0xf872;
+ sbuf[1] = 0x4e1f;
/* Audio ES Channel empty, wait for DD Decoder or pause */
- static const unsigned short sbuf[4096] =
- { 0xf872, 0x4e1f, 0x0003, 0x0020, 0x0, };
-
+ sbuf[2] = 0x0003;
+ sbuf[3] = 0x0020;
+ memset(&sbuf[4], 0, sizeof(sbuf) - 4 * sizeof(uint16_t));
while (num_frames > 1536) {
pthread_mutex_lock( &this->driver_lock );
if(this->driver_open)
@@ -433,7 +437,6 @@ static void write_pause_burst(aos_t *this, uint32_t num_frames) {
pthread_mutex_unlock( &this->driver_lock );
num_frames -= 1536;
}
-
}
diff --git a/src/xine-engine/events.c b/src/xine-engine/events.c
index 2b16116b3..990cbe787 100644
--- a/src/xine-engine/events.c
+++ b/src/xine-engine/events.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: events.c,v 1.31 2006/09/26 22:03:44 dgp85 Exp $
+ * $Id: events.c,v 1.32 2006/10/16 22:18:24 valtri Exp $
*
* Event handling functions
*
@@ -143,6 +143,7 @@ void xine_event_dispose_queue (xine_event_queue_t *queue) {
ite = xine_list_front (stream->event_queues);
+ q = NULL;
if ( ite ) {
do {
q = xine_list_get_value (stream->event_queues, ite);
diff --git a/src/xine-engine/info_helper.c b/src/xine-engine/info_helper.c
index 68b2e4de3..e38b5e5c4 100644
--- a/src/xine-engine/info_helper.c
+++ b/src/xine-engine/info_helper.c
@@ -20,7 +20,7 @@
* stream metainfo helper functions
* hide some xine engine details from demuxers and reduce code duplication
*
- * $Id: info_helper.c,v 1.18 2006/09/26 21:54:40 dgp85 Exp $
+ * $Id: info_helper.c,v 1.19 2006/10/16 22:18:24 valtri Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -193,7 +193,8 @@ static int meta_info_validate_utf8 (const char *value)
{
iconv_t cd;
char *utf8_value;
- ICONV_CONST char *inbuf, *outbuf;
+ ICONV_CONST char *inbuf;
+ char *outbuf;
size_t inbytesleft, outbytesleft;
if ((cd = iconv_open("UTF-8", "UTF-8")) == (iconv_t)-1) {
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c
index a0e245040..0a6b182f9 100644
--- a/src/xine-engine/load_plugins.c
+++ b/src/xine-engine/load_plugins.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: load_plugins.c,v 1.225 2006/09/26 21:32:08 dgp85 Exp $
+ * $Id: load_plugins.c,v 1.226 2006/10/16 22:18:24 valtri Exp $
*
*
* Load input/demux/audio_out/video_out/codec plugins
@@ -181,7 +181,7 @@ static void map_decoder_list (xine_t *this,
for (list_id = 0; list_id < list_size; list_id++) {
plugin_node_t *node = xine_sarray_get(decoder_list, list_id);
- uint32_t *type = ((decoder_info_t *)node->info->special_info)->supported_types;
+ const uint32_t *type = ((decoder_info_t *)node->info->special_info)->supported_types;
int priority = get_decoder_priority(this, node);
lprintf ("mapping decoder %s\n", node->info->id);
@@ -955,34 +955,34 @@ static void load_plugin_list(FILE *fp, xine_sarray_t *plugins) {
switch (node->info->type & PLUGIN_TYPE_MASK){
case PLUGIN_VIDEO_OUT:
- vo_info = node->info->special_info =
+ node->info->special_info = vo_info =
xine_xmalloc(sizeof(vo_info_t));
break;
case PLUGIN_AUDIO_OUT:
- ao_info = node->info->special_info =
- xine_xmalloc(sizeof(ao_info_t));
+ node->info->special_info = ao_info =
+ xine_xmalloc(sizeof(ao_info_t));
break;
case PLUGIN_DEMUX:
- demuxer_info = node->info->special_info =
+ node->info->special_info = demuxer_info =
xine_xmalloc(sizeof(demuxer_info_t));
break;
case PLUGIN_INPUT:
- input_info = node->info->special_info =
+ node->info->special_info = input_info =
xine_xmalloc(sizeof(input_info_t));
break;
case PLUGIN_AUDIO_DECODER:
case PLUGIN_VIDEO_DECODER:
case PLUGIN_SPU_DECODER:
- decoder_info = node->info->special_info =
+ node->info->special_info = decoder_info =
xine_xmalloc(sizeof(decoder_info_t));
break;
case PLUGIN_POST:
- post_info = node->info->special_info =
+ node->info->special_info = post_info =
xine_xmalloc(sizeof(post_info_t));
break;
}
@@ -1527,7 +1527,7 @@ vo_driver_t *_x_load_video_output_plugin(xine_t *this,
node = xine_sarray_get (catalog->plugin_lists[PLUGIN_VIDEO_OUT - 1], list_id);
- vo_info = node->info->special_info;
+ vo_info = (vo_info_t *)node->info->special_info;
if (vo_info->visual_type == visual_type) {
if (id) {
if (!strcasecmp (node->info->id, id)) {
@@ -1591,7 +1591,7 @@ xine_video_port_t *xine_new_framegrab_video_port (xine_t *this) {
node = xine_sarray_get (catalog->plugin_lists[PLUGIN_VIDEO_OUT - 1], list_id);
- vo_info = node->info->special_info;
+ vo_info = (vo_info_t *)node->info->special_info;
if (!strcasecmp (node->info->id, id)) {
driver = _load_video_driver (this, node, NULL);
break;
@@ -1674,7 +1674,7 @@ xine_audio_port_t *xine_open_audio_driver (xine_t *this, const char *id,
node = xine_sarray_get (this->plugin_catalog->plugin_lists[PLUGIN_AUDIO_OUT - 1], list_id);
- ao_info = node->info->special_info;
+ ao_info = (ao_info_t *)node->info->special_info;
if (id) {
if (!strcasecmp(node->info->id, id)) {
@@ -2546,7 +2546,7 @@ static void dispose_plugin_list (xine_sarray_t *list) {
free (decoder_info->supported_types);
default:
- free (node->info->special_info);
+ free ((void *)node->info->special_info);
break;
}
diff --git a/src/xine-engine/scratch.c b/src/xine-engine/scratch.c
index 259aec441..aad2693b9 100644
--- a/src/xine-engine/scratch.c
+++ b/src/xine-engine/scratch.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: scratch.c,v 1.20 2006/09/26 05:19:49 dgp85 Exp $
+ * $Id: scratch.c,v 1.21 2006/10/16 22:18:24 valtri Exp $
*
* top-level xine functions
*
@@ -96,7 +96,6 @@ static void scratch_dispose (scratch_buffer_t *this) {
scratch_buffer_t *_x_new_scratch_buffer (int num_lines) {
scratch_buffer_t *this;
int i;
- char *mem;
this = xine_xmalloc (sizeof (scratch_buffer_t));
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c
index 5e07836d1..78476a768 100644
--- a/src/xine-engine/xine.c
+++ b/src/xine-engine/xine.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine.c,v 1.334 2006/09/25 23:11:19 dgp85 Exp $
+ * $Id: xine.c,v 1.335 2006/10/16 22:18:24 valtri Exp $
*/
/*
@@ -644,7 +644,7 @@ static void mrl_unescape(char *mrl) {
for (i = 0; i < len; i++) {
if ((mrl[i]=='%') && (i<(len-2))) {
- int c;
+ unsigned int c;
if (sscanf(&mrl[i + 1], "%02x", &c) == 1) {
mrl[i]= (char)c;
@@ -1400,7 +1400,6 @@ void xine_exit (xine_t *this) {
xine_t *xine_new (void) {
xine_t *this;
- int i;
#ifdef WIN32
WSADATA Data;