Commit 7def7049 authored by Laurent Aimar's avatar Laurent Aimar

* stream_output.h : add a private parameter to sout_instance_t only used

by src/stream_output.c (avoid changing every time stream_output.h...)
parent 05ddee03
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* stream_output.h : stream output module * stream_output.h : stream output module
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: stream_output.h,v 1.6 2003/02/24 10:45:55 fenrir Exp $ * $Id: stream_output.h,v 1.7 2003/02/24 11:00:54 fenrir Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* Laurent Aimar <fenrir@via.ecp.fr> * Laurent Aimar <fenrir@via.ecp.fr>
...@@ -121,10 +121,12 @@ struct sout_access_out_t ...@@ -121,10 +121,12 @@ struct sout_access_out_t
#define SOUT_MUX_CAP_ERR_UNKNOWN 0x01 #define SOUT_MUX_CAP_ERR_UNKNOWN 0x01
#define SOUT_MUX_CAP_ERR_UNIMPLEMENTED 0x02 #define SOUT_MUX_CAP_ERR_UNIMPLEMENTED 0x02
typedef struct sout_instance_sys_t sout_instance_sys_t;
struct sout_instance_t struct sout_instance_t
{ {
VLC_COMMON_MEMBERS VLC_COMMON_MEMBERS
char * psz_dest; char * psz_dest;
char * psz_access; char * psz_access;
char * psz_mux; char * psz_mux;
...@@ -150,6 +152,8 @@ struct sout_instance_t ...@@ -150,6 +152,8 @@ struct sout_instance_t
int i_nb_inputs; int i_nb_inputs;
sout_input_t **pp_inputs; sout_input_t **pp_inputs;
sout_instance_sys_t *p_sys;
}; };
......
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