Changeset bf706caf1da81b3e0821fb93f13a7cf6ea85e32c

Show
Ignore:
Timestamp:
03/25/06 13:54:27 (2 years ago)
Author:
Felix Paul Kühne <fkuehne@videolan.org>
git-committer:
Felix Paul Kühne <fkuehne@videolan.org> 1143291267 +0000
git-parent:

[df188ac24c0b15bad6c22b7a91ebb209aeffa27d]

git-author:
Felix Paul Kühne <fkuehne@videolan.org> 1143291267 +0000
Message:

* another 1st string review, refs #438

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/mux/asf.c

    r2cb472d rbf706ca  
    22 * asf.c: asf muxer module for vlc 
    33 ***************************************************************************** 
    4  * Copyright (C) 2003-2004 the VideoLAN team 
     4 * Copyright (C) 2003-2004, 2006 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    187187    int i; 
    188188 
    189     msg_Dbg( p_mux, "Asf muxer opened" ); 
     189    msg_Dbg( p_mux, "asf muxer opened" ); 
    190190    sout_CfgParse( p_mux, SOUT_CFG_PREFIX, ppsz_sout_options, p_mux->p_cfg ); 
    191191 
     
    242242    p_sys->psz_rating = val.psz_string; 
    243243 
    244     msg_Dbg( p_mux, "meta data: title='%s' author='%s' copyright='%s'
    245              "comment='%s' rating='%s'", 
     244    msg_Dbg( p_mux, "meta data: title='%s', author='%s', copyright='%s',
     245             "comment='%s', rating='%s'", 
    246246             p_sys->psz_title, p_sys->psz_author, p_sys->psz_copyright, 
    247247             p_sys->psz_comment, p_sys->psz_rating ); 
     
    335335    if( p_sys->i_track >= MAX_ASF_TRACKS ) 
    336336    { 
    337         msg_Dbg( p_mux, "cannot add this track (too much track)" ); 
     337        msg_Dbg( p_mux, "cannot add this track (too much tracks)" ); 
    338338        return VLC_EGENERIC; 
    339339    } 
  • modules/mux/mp4.c

    r2cb472d rbf706ca  
    22 * mp4.c: mp4/mov muxer 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001, 2002, 2003 the VideoLAN team 
     4 * Copyright (C) 2001, 2002, 2003, 2006 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    4343 * Module descriptor 
    4444 *****************************************************************************/ 
    45 #define FASTSTART_TEXT N_("Create \"Fast start\" files") 
     45#define FASTSTART_TEXT N_("Create \"Fast Start\" files") 
    4646#define FASTSTART_LONGTEXT N_( \ 
    47     "When this option is turned on, \"Fast start\" files will be created. " \ 
    48     "(\"Fast start\" files are optimized for download, allowing the user " \ 
     47    "When this option is turned on, \"Fast Start\" files will be created. " \ 
     48    "(\"Fast Start\" files are optimized for downloads and allow the user " \ 
    4949    "to start previewing the file while it is downloading).") 
    5050static int  Open   ( vlc_object_t * ); 
     
    303303            if( sout_AccessOutRead( p_mux->p_access, p_buf ) < i_chunk ) 
    304304            { 
    305                 msg_Warn( p_this, "read() not supported by acces output, " 
     305                msg_Warn( p_this, "read() not supported by access output, " 
    306306                          "won't create a fast start file" ); 
    307307                p_sys->b_fast_start = VLC_FALSE; 
     
    628628            { 
    629629                /* TODO */ 
    630                 msg_Dbg( p_mux, "writing a empty subs" ) ; 
     630                msg_Dbg( p_mux, "writing an empty sub" ) ; 
    631631 
    632632                /* Append a idx entry */ 
     
    687687 
    688688    /* Replace the 4 bytes start code with 4 bytes size, 
    689      * FIXME are all startcode 4 bytes ? (I don't think :( */ 
     689     * FIXME are all startcodes 4 bytes ? (I don't think :( */ 
    690690    while( dat < end ) 
    691691    { 
  • modules/mux/mpjpeg.c

    r2cb472d rbf706ca  
    22 * mpjpeg.c: mime multipart jpeg  muxer module for vlc 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001, 2002 the VideoLAN team 
     4 * Copyright (C) 2001, 2002, 2006 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    3232#define SEPARATOR_TEXT N_( "Multipart separator string" ) 
    3333#define SEPARATOR_LONGTEXT N_( "Multipart strings like MPJPEG use a " \ 
    34                                "separator string between content pieces. "
    35                                "You can select this string. Default is "
    36                                "--myboundary" ) 
     34                               "specific string to separate its content "
     35                               "pieces. You can select this string. "
     36                               "Default is --myboundary" ) 
    3737 
    3838 
     
    4848vlc_module_begin(); 
    4949    set_shortname( "MPJPEG" ); 
    50     set_description( _("Multipart jpeg muxer") ); 
     50    set_description( _("Multipart JPEG muxer") ); 
    5151    set_capability( "sout mux", 5 ); 
    5252    add_string( SOUT_CFG_PREFIX "separator", "--myboundary", NULL, 
  • modules/mux/ogg.c

    r2cb472d rbf706ca  
    22 * ogg.c: ogg muxer module for vlc 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001, 2002 the VideoLAN team 
     4 * Copyright (C) 2001, 2002, 2006 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    4848 
    4949vlc_module_begin(); 
    50     set_description( _("Ogg/ogm muxer") ); 
     50    set_description( _("Ogg/OGM muxer") ); 
    5151    set_capability( "sout mux", 10 ); 
    5252    set_category( CAT_SOUT ); 
     
    518518        else 
    519519        { 
    520             /* Wasn't already added so get rid of it */ 
     520            /* wasn't already added so get rid of it */ 
    521521            FREE( p_stream->p_oggds_header ); 
    522522            FREE( p_stream ); 
  • modules/mux/wav.c

    r2cb472d rbf706ca  
    22 * wav.c: wav muxer module for vlc 
    33 ***************************************************************************** 
    4  * Copyright (C) 2004 the VideoLAN team 
     4 * Copyright (C) 2004, 2006 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    172172    } 
    173173 
    174     msg_Dbg( p_mux, "adding input %i channels, %iHz", 
     174    msg_Dbg( p_mux, "adding %i input channels, %iHz", 
    175175             p_input->p_fmt->audio.i_channels, 
    176176             p_input->p_fmt->audio.i_rate ); 
  • modules/packetizer/copy.c

    r2cb472d rbf706ca  
    22 * copy.c 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001, 2002 the VideoLAN team 
     4 * Copyright (C) 2001, 2002, 2006 the VideoLAN team 
    55 * $Id$ 
    66 * 
  • modules/packetizer/h264.c

    r2cb472d rbf706ca  
    22 * h264.c: h264/avc video packetizer 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001, 2002 the VideoLAN team 
     4 * Copyright (C) 2001, 2002, 2006 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    4545    set_category( CAT_SOUT ); 
    4646    set_subcategory( SUBCAT_SOUT_PACKETIZER ); 
    47     set_description( _("H264 video packetizer") ); 
     47    set_description( _("H.264 video packetizer") ); 
    4848    set_capability( "packetizer", 50 ); 
    4949    set_callbacks( Open, Close ); 
     
    204204            p += 2 + i_length; 
    205205        } 
    206         msg_Dbg( p_dec, "avcC length size=%d sps=%d pps=%d", 
     206        msg_Dbg( p_dec, "avcC length size=%d, sps=%d, pps=%d", 
    207207                 p_sys->i_avcC_length_size, i_sps, i_pps ); 
    208208 
  • modules/packetizer/mpeg4audio.c

    r2cb472d rbf706ca  
    22 * mpeg4audio.c: parse and packetize an MPEG 4 audio stream 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001, 2002 the VideoLAN team 
     4 * Copyright (C) 2001, 2002, 2006 the VideoLAN team 
    55 * $Id$ 
    66 * 
  • modules/packetizer/mpeg4video.c

    r2cb472d rbf706ca  
    22 * mpeg4video.c: mpeg 4 video packetizer 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001, 2002 the VideoLAN team 
     4 * Copyright (C) 2001, 2002, 2006 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    160160                p_dec->fmt_in.i_extra ); 
    161161 
    162         msg_Dbg( p_dec, "opening with vol size:%d", p_dec->fmt_in.i_extra ); 
     162        msg_Dbg( p_dec, "opening with vol size: %d", p_dec->fmt_in.i_extra ); 
    163163        m4v_VOLParse( p_dec, &p_dec->fmt_out, 
    164164                      p_dec->fmt_out.p_extra, p_dec->fmt_out.i_extra ); 
  • modules/packetizer/mpegvideo.c

    rbd68029 rbf706ca  
    22 * mpegvideo.c: parse and packetize an MPEG1/2 video stream 
    33 ***************************************************************************** 
    4  * Copyright (C) 2001-2005 VideoLAN (Centrale Réseaux) and its contributors 
     4 * Copyright (C) 2001-2006 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    5050#include "vlc_block_helper.h" 
    5151 
    52 #define SYNC_INTRAFRAME_TEXT N_("Sync on intraframe") 
     52#define SYNC_INTRAFRAME_TEXT N_("Sync on Intra Frame") 
    5353#define SYNC_INTRAFRAME_LONGTEXT N_("Normally the packetizer would " \ 
    5454    "sync on the next full frame. This flags instructs the packetizer " \ 
    55     "to sync on the first intraframe found.") 
     55    "to sync on the first Intra Frame found.") 
    5656 
    5757/***************************************************************************** 
     
    190190    p_sys->b_sync_on_intra_frame = var_CreateGetBool( p_dec, "packetizer-mpegvideo-sync-iframe" ); 
    191191    if( p_sys->b_sync_on_intra_frame ) 
    192         msg_Dbg( p_dec, "syncing happens on intraframe now." ); 
     192        msg_Dbg( p_dec, "syncing on intra frame now" ); 
    193193 
    194194    return VLC_SUCCESS; 
     
    323323                if( p_pic->i_flags & BLOCK_FLAG_TYPE_I ) 
    324324                { 
    325                     msg_Dbg( p_dec, "synced on Intra frame" ); 
     325                    msg_Dbg( p_dec, "synced on intra frame" ); 
    326326                    p_sys->b_discontinuity = VLC_FALSE; 
    327327                    p_pic->i_flags |= BLOCK_FLAG_DISCONTINUITY; 
     
    329329                else 
    330330                { 
    331                     msg_Dbg( p_dec, "waiting on Intra frame" ); 
     331                    msg_Dbg( p_dec, "waiting on intra frame" ); 
    332332                    p_sys->i_state = STATE_NOSYNC; 
    333333                    block_Release( p_pic ); 
     
    555555        if ( !p_sys->b_inited ) 
    556556        { 
    557             msg_Dbg( p_dec, "Size %dx%d fps=%.3f", 
     557            msg_Dbg( p_dec, "size %dx%d fps=%.3f", 
    558558                 p_dec->fmt_out.video.i_width, p_dec->fmt_out.video.i_height, 
    559559                 p_sys->i_frame_rate / (float)p_sys->i_frame_rate_base );