X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fmux%2Fmpjpeg.c;h=0a16c7ddb6169b6bfbd3b5d060c6b910fa384ac6;hb=71fc0c72c7b716de080e109d8aa5d83bb46bc1c0;hp=a3034a2978aa1c70570ae9bdc42a0e47c6e6197a;hpb=b7c52465b1500d1c0aacbeb93080f97294ac34d6;p=vlc diff --git a/modules/mux/mpjpeg.c b/modules/mux/mpjpeg.c index a3034a2978..0a16c7ddb6 100644 --- a/modules/mux/mpjpeg.c +++ b/modules/mux/mpjpeg.c @@ -1,10 +1,10 @@ /***************************************************************************** * mpjpeg.c: mime multipart jpeg muxer module for vlc ***************************************************************************** - * Copyright (C) 2001, 2002 VideoLAN - * $Id: dummy.c 7047 2004-03-11 17:37:50Z fenrir $ + * Copyright (C) 2001, 2002, 2006 the VideoLAN team + * $Id$ * - * Authors: Sigmund Augdal + * Authors: Sigmund Augdal Helberg * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,7 +18,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** @@ -31,9 +31,9 @@ #define SEPARATOR_TEXT N_( "Multipart separator string" ) #define SEPARATOR_LONGTEXT N_( "Multipart strings like MPJPEG use a " \ - "separator string betwen content pieces. "\ - "You can select this string. Default is "\ - "--myboundary" ) + "specific string to separate its content " \ + "pieces. You can select this string. " \ + "Default is --myboundary" ) #define CONTENT_TYPE "Content-Type: image/jpeg" @@ -47,7 +47,7 @@ static void Close ( vlc_object_t * ); vlc_module_begin(); set_shortname( "MPJPEG" ); - set_description( _("Multipart jpeg muxer") ); + set_description( _("Multipart JPEG muxer") ); set_capability( "sout mux", 5 ); add_string( SOUT_CFG_PREFIX "separator", "--myboundary", NULL, SEPARATOR_TEXT, SEPARATOR_LONGTEXT, VLC_TRUE );