]> git.sesse.net Git - vlc/blob - modules/mux/mpjpeg.c
Preferences consistency fixes by Christophe Mutricy <xtophe at nxtelevision d0t com>
[vlc] / modules / mux / mpjpeg.c
1 /*****************************************************************************
2  * mpjpeg.c: mime multipart jpeg  muxer module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 VideoLAN
5  * $Id: dummy.c 7047 2004-03-11 17:37:50Z fenrir $
6  *
7  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>
28
29 #include <vlc/vlc.h>
30 #include <vlc/sout.h>
31
32 #define SEPARATOR_TEXT N_( "Multipart separator string" )
33 #define SEPARATOR_LONGTEXT N_( "Multipart strings like MPJPEG use a " \
34                                "separator string betwen content pieces. "\
35                                "You can select this string. Default is "\
36                                "--myboundary" )
37
38
39 #define CONTENT_TYPE "Content-Type: image/jpeg"
40 /*****************************************************************************
41  * Module descriptor
42  *****************************************************************************/
43 static int  Open   ( vlc_object_t * );
44 static void Close  ( vlc_object_t * );
45
46 #define SOUT_CFG_PREFIX "sout-mpjpeg-"
47
48 vlc_module_begin();
49     set_shortname( _("MPJPEG"));
50     set_description( _("Multipart jpeg muxer") );
51     set_capability( "sout mux", 5 );
52     add_string( SOUT_CFG_PREFIX "separator", "--myboundary", NULL,
53                               SEPARATOR_TEXT, SEPARATOR_LONGTEXT, VLC_TRUE );
54     set_category( CAT_SOUT );
55     set_subcategory( SUBCAT_SOUT_MUX );
56     set_callbacks( Open, Close );
57     add_shortcut( "mpjpeg" );
58 vlc_module_end();
59
60 /*****************************************************************************
61  * Exported prototypes
62  *****************************************************************************/
63 static const char *ppsz_sout_options[] = { "separator", NULL };
64
65 static int Control  ( sout_mux_t *, int, va_list );
66 static int AddStream( sout_mux_t *, sout_input_t * );
67 static int DelStream( sout_mux_t *, sout_input_t * );
68 static int Mux      ( sout_mux_t * );
69
70 struct sout_mux_sys_t
71 {
72     block_t *p_separator;
73     vlc_bool_t b_send_headers;
74 };
75
76 /*****************************************************************************
77  * Open:
78  *****************************************************************************/
79 static int Open( vlc_object_t *p_this )
80 {
81     int i_size;
82     sout_mux_t *p_mux = (sout_mux_t*)p_this;
83     sout_mux_sys_t  *p_sys;
84     char *psz_separator_block, *psz_separator;
85
86     msg_Dbg( p_mux, "Multipart jpeg muxer opened" );
87
88     p_sys = p_mux->p_sys = malloc( sizeof(sout_mux_sys_t) );
89     p_sys->b_send_headers = VLC_TRUE;
90
91     psz_separator = var_CreateGetString( p_mux, SOUT_CFG_PREFIX "separator" );
92     i_size = strlen( psz_separator ) + 2 + 2 + 2 + strlen( CONTENT_TYPE );
93     psz_separator_block = (char*)malloc( i_size );
94     sprintf( psz_separator_block, "\r\n%s\r\n%s\r\n", psz_separator,
95                                   CONTENT_TYPE );
96     p_sys->p_separator = block_New( p_mux, i_size );
97     memcpy( p_sys->p_separator->p_buffer, psz_separator_block , i_size );
98
99     if( psz_separator_block ) free( psz_separator_block );
100
101     p_mux->pf_control   = Control;
102     p_mux->pf_addstream = AddStream;
103     p_mux->pf_delstream = DelStream;
104     p_mux->pf_mux       = Mux;
105
106     return VLC_SUCCESS;
107 }
108
109 /*****************************************************************************
110  * Close:
111  *****************************************************************************/
112
113 static void Close( vlc_object_t * p_this )
114 {
115     sout_mux_t *p_mux = (sout_mux_t*)p_this;
116     sout_mux_sys_t *p_sys = p_mux->p_sys;
117
118     msg_Dbg( p_mux, "Multipart jpeg muxer closed" );
119     block_Release( p_sys->p_separator );
120     free( p_sys );
121 }
122
123 static int Control( sout_mux_t *p_mux, int i_query, va_list args )
124 {
125     vlc_bool_t *pb_bool;
126     char **ppsz;
127
128    switch( i_query )
129    {
130        case MUX_CAN_ADD_STREAM_WHILE_MUXING:
131            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
132            *pb_bool = VLC_TRUE;
133            return VLC_SUCCESS;
134
135        case MUX_GET_ADD_STREAM_WAIT:
136            pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
137            *pb_bool = VLC_TRUE;
138            return VLC_SUCCESS;
139
140        case MUX_GET_MIME:
141            ppsz = (char**)va_arg( args, char ** );
142            *ppsz = strdup( "multipart/x-mixed-replace; boundary=This Random String" );
143            return VLC_SUCCESS;
144
145         default:
146             return VLC_EGENERIC;
147    }
148 }
149
150 static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
151 {
152     if( p_mux->i_nb_inputs > 1 )
153     {
154         msg_Dbg( p_mux, "only 1 input allowed" );
155         return VLC_EGENERIC;
156     }
157
158     msg_Dbg( p_mux, "adding input" );
159     if( p_input->p_fmt->i_codec != VLC_FOURCC('M','J','P','G') &&
160         p_input->p_fmt->i_codec != VLC_FOURCC('m','j','p','g') &&
161         p_input->p_fmt->i_codec != VLC_FOURCC('j','p','e','g') &&
162         p_input->p_fmt->i_codec != VLC_FOURCC('J','P','E','G') &&
163         p_input->p_fmt->i_codec != VLC_FOURCC('J','F','I','F') &&
164         p_input->p_fmt->i_codec != VLC_FOURCC('J','P','G','L') &&
165         p_input->p_fmt->i_codec != VLC_FOURCC('m','j','p','a') )
166     {
167         return VLC_EGENERIC;
168     }
169
170     return VLC_SUCCESS;
171 }
172
173 static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
174 {
175     msg_Dbg( p_mux, "removing input" );
176     return VLC_SUCCESS;
177 }
178
179 static int Mux( sout_mux_t *p_mux )
180 {
181     block_fifo_t *p_fifo;
182     sout_mux_sys_t *p_sys = p_mux->p_sys;
183     int i_count;
184     /* Content-Length:.......\r\n */
185     char psz_content_length[25];
186
187     if( p_sys->b_send_headers )
188     {
189         block_t *p_header;
190         char *psz_separator = var_CreateGetString( p_mux,
191                                              SOUT_CFG_PREFIX "separator" );
192         char *psz_separator_block = (char *)malloc( strlen( psz_separator ) +
193                                               2 + strlen( CONTENT_TYPE ) );
194
195         sprintf( psz_separator_block, "%s\r\n%s\r\n", psz_separator,
196                                       CONTENT_TYPE );
197
198         p_header = block_New( p_mux, strlen( psz_separator_block ) );
199         memcpy( p_header->p_buffer, psz_separator_block ,
200                                     strlen( psz_separator_block ) );
201         p_header->i_flags |= BLOCK_FLAG_HEADER;
202         sout_AccessOutWrite( p_mux->p_access, p_header );
203         p_sys->b_send_headers = VLC_FALSE;
204         if( psz_separator_block ) free( psz_separator_block );
205     }
206
207     if( !p_mux->i_nb_inputs ) return VLC_SUCCESS;
208
209     p_fifo = p_mux->pp_inputs[0]->p_fifo;
210     i_count = p_fifo->i_depth;
211     while( i_count > 0 )
212     {
213         block_t *p_length = block_New( p_mux, 25 );
214         block_t *p_data = block_FifoGet( p_fifo );
215         sout_AccessOutWrite( p_mux->p_access,
216                              block_Duplicate( p_sys->p_separator ) );
217         memset( psz_content_length, 0, 25 );
218         snprintf( psz_content_length, 25, "Content-Length: %i\r\n\r\n",
219                                           p_data->i_buffer );
220         memcpy( p_length->p_buffer, psz_content_length, 25 );
221         sout_AccessOutWrite( p_mux->p_access, p_length );
222         sout_AccessOutWrite( p_mux->p_access, p_data );
223
224         i_count--;
225     }
226
227     return VLC_SUCCESS;
228 }