]> git.sesse.net Git - vlc/blob - modules/mux/mpjpeg.c
a mime multipart jpeg muxer. Mimics the way some webcams work. Resulting
[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 "\n--This Random String\n" \
33                   "Content-Type: image/jpeg\n\n"
34 /*****************************************************************************
35  * Module descriptor
36  *****************************************************************************/
37 static int  Open   ( vlc_object_t * );
38 static void Close  ( vlc_object_t * );
39
40 vlc_module_begin();
41     set_description( _("Multipart jpeg muxer") );
42     set_capability( "sout mux", 5 );
43     set_callbacks( Open, Close );
44     add_shortcut( "mpjpeg" );
45 vlc_module_end();
46
47 /*****************************************************************************
48  * Exported prototypes
49  *****************************************************************************/
50 static int  Capability(sout_mux_t *, int, void *, void * );
51 static int  AddStream( sout_mux_t *, sout_input_t * );
52 static int  DelStream( sout_mux_t *, sout_input_t * );
53 static int  Mux      ( sout_mux_t * );
54
55 struct sout_mux_sys_t
56 {
57     block_t *p_separator;
58     vlc_bool_t b_send_headers;
59 };
60
61 /*****************************************************************************
62  * Open:
63  *****************************************************************************/
64 static int Open( vlc_object_t *p_this )
65 {
66     sout_mux_t *p_mux = (sout_mux_t*)p_this;
67     sout_mux_sys_t  *p_sys;
68
69     msg_Dbg( p_mux, "Multipart jpeg muxer opened" );
70
71     p_mux->pf_capacity  = Capability;
72     p_mux->pf_addstream = AddStream;
73     p_mux->pf_delstream = DelStream;
74     p_mux->pf_mux       = Mux;
75
76     p_sys = p_mux->p_sys = malloc( sizeof(sout_mux_sys_t) );
77     p_sys->b_send_headers = VLC_TRUE;
78     p_sys->p_separator = block_New( p_mux, sizeof(SEPARATOR) - 1 );
79     memcpy( p_sys->p_separator->p_buffer, SEPARATOR, sizeof(SEPARATOR) - 1 );
80
81     return VLC_SUCCESS;
82 }
83
84 /*****************************************************************************
85  * Close:
86  *****************************************************************************/
87
88 static void Close( vlc_object_t * p_this )
89 {
90     sout_mux_t *p_mux = (sout_mux_t*)p_this;
91     sout_mux_sys_t *p_sys = p_mux->p_sys;
92
93     msg_Dbg( p_mux, "Multipart jpeg muxer closed" );
94     block_Release( p_sys->p_separator );
95     free( p_sys );
96 }
97
98 static int Capability( sout_mux_t *p_mux, int i_query,
99                        void *p_args, void *p_answer )
100 {
101     return SOUT_MUX_CAP_ERR_UNIMPLEMENTED;
102 }
103
104 static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
105 {
106     msg_Dbg( p_mux, "adding input" );
107     if( p_input->p_fmt->i_codec != VLC_FOURCC('M','J','P','G') )
108     {
109         return VLC_EGENERIC;
110     }
111     return VLC_SUCCESS;
112 }
113
114 static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
115 {
116     msg_Dbg( p_mux, "removing input" );
117     return VLC_SUCCESS;
118 }
119
120 static int Mux( sout_mux_t *p_mux )
121 {
122     block_fifo_t *p_fifo;
123     sout_mux_sys_t *p_sys = p_mux->p_sys;
124     int i_count;
125     if( p_sys->b_send_headers )
126     {
127         block_t *p_header = block_New( p_mux, sizeof(SEPARATOR) - 2);
128         memcpy( p_header->p_buffer, &SEPARATOR[1], sizeof(SEPARATOR) - 2 );
129         p_header->i_flags |= BLOCK_FLAG_HEADER;
130         sout_AccessOutWrite( p_mux->p_access, p_header );
131         p_sys->b_send_headers = VLC_FALSE;
132     }
133     p_fifo = p_mux->pp_inputs[0]->p_fifo;
134     i_count = p_fifo->i_depth;
135     while( i_count > 0 )
136     {
137         block_t *p_data = block_FifoGet( p_fifo );
138         sout_AccessOutWrite( p_mux->p_access,
139                              block_Duplicate( p_sys->p_separator ) );
140         sout_AccessOutWrite( p_mux->p_access, p_data );
141
142         i_count--;
143     }
144
145     return VLC_SUCCESS;
146 }