diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-04-21 06:12:23 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-04-21 06:12:23 +0000 |
commit | e422162089e2b3de8eb42bfc08903c08454c3255 (patch) | |
tree | 387738594832e3efb244e4478ac9ed115b29cca3 /src | |
parent | 95d4429819392486db8acb4fda7249b3c8c4a290 (diff) | |
download | xine-lib-e422162089e2b3de8eb42bfc08903c08454c3255.tar.gz xine-lib-e422162089e2b3de8eb42bfc08903c08454c3255.tar.bz2 |
avoid implicit declarations. Less warnings.
CVS patchset: 4646
CVS date: 2003/04/21 06:12:23
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/load_plugins.c | 7 | ||||
-rw-r--r-- | src/xine-engine/xine_internal.h | 3 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index cfb3af0f7..018170529 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.148 2003/04/20 21:13:22 guenter Exp $ + * $Id: load_plugins.c,v 1.149 2003/04/21 06:12:23 f1rmb Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -58,6 +58,7 @@ static char *plugin_name; +#if 0 #if DONT_CATCH_SIGSEGV #define install_segv_handler() @@ -83,9 +84,7 @@ static void remove_segv_handler(void){ } #endif - - - +#endif /* 0 */ /* * plugin list/catalog management functions diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index 31bca19fa..b2644368e 100644 --- a/src/xine-engine/xine_internal.h +++ b/src/xine-engine/xine_internal.h @@ -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_internal.h,v 1.135 2003/04/17 19:01:25 miguelfreitas Exp $ + * $Id: xine_internal.h,v 1.136 2003/04/21 06:12:23 f1rmb Exp $ * */ @@ -300,6 +300,7 @@ void xine_get_current_info (xine_stream_t *stream, extra_info_t *extra_info, int /* demuxer helper functions from demux.c */ void xine_demux_flush_engine (xine_stream_t *stream); +void xine_demux_control_nop (xine_stream_t *stream, uint32_t flags); void xine_demux_control_newpts (xine_stream_t *stream, int64_t pts, uint32_t flags); void xine_demux_control_headers_done (xine_stream_t *stream); void xine_demux_control_start (xine_stream_t *stream); |