Changeset 6d9fde80110542d213ed6236efc134931da58066

Show
Ignore:
Timestamp:
29/05/08 18:34:36 (6 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1212078876 +0300
git-parent:

[522baa537196376d0e517c68547a78bb830dddd7]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1212078876 +0300
Message:

Spelling

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • include/vlc_vout.h

    r449fd28 r6d9fde8  
    383383    vout_chroma_convert_t *pf_convert; 
    384384 
    385     /** Private module-dependant data */ 
     385    /** Private module-dependent data */ 
    386386    chroma_sys_t *      p_sys;                               /* private data */ 
    387387 
     
    397397 * Video output thread descriptor 
    398398 * 
    399  * Any independant video output device, such as an X11 window or a GGI device, 
     399 * Any independent video output device, such as an X11 window or a GGI device, 
    400400 * is represented by a video output thread, and described using the following 
    401401 * structure. 
  • modules/access/mms/asf.h

    r6300760 r6d9fde8  
    2525 * XXX: 
    2626 *  Definitions and data duplicated from asf demuxers but I want access 
    27  * and demux plugins to be independant 
     27 * and demux plugins to be independent 
    2828 * 
    2929 ****************************************************************************/ 
  • modules/codec/ffmpeg/ffmpeg.h

    r6300760 r6d9fde8  
    167167"Filters                        Options\n" \ 
    168168"short  long name       short   long option     Description\n" \ 
    169 "*      *               a       autoq           cpu power dependant enabler\n" \ 
     169"*      *               a       autoq           cpu power dependent enabler\n" \ 
    170170"                       c       chrom           chrominance filtring enabled\n" \ 
    171171"                       y       nochrom         chrominance filtring disabled\n" \ 
  • modules/gui/skins2/win32/win32_graphics.cpp

    radc858d r6d9fde8  
    108108    bmpInfo.bmiHeader.biSizeImage = width * height * 4; 
    109109 
    110     // Create a DIB (Device Independant Bitmap) and associate it with 
     110    // Create a DIB (Device Independent Bitmap) and associate it with 
    111111    // a temporary DC 
    112112    HDC hDC = CreateCompatibleDC( m_hDC ); 
  • modules/misc/quartztext.c

    r13ae40b r6d9fde8  
    10331033                    y -= ascent; 
    10341034 
    1035                     // Set the outlining for this line to be dependant on the size of the line - 
     1035                    // Set the outlining for this line to be dependent on the size of the line - 
    10361036                    // make it about 5% of the ascent, with a minimum at 1.0 
    10371037                    float f_thickness = FixedToFloat( ascent ) * 0.05; 
  • modules/packetizer/mpeg4audio.c

    rc0a898e r6d9fde8  
    831831        return 0; 
    832832 
    833     /* FIXME do we need to split the subframe into independant packet ? */ 
     833    /* FIXME do we need to split the subframe into independent packet ? */ 
    834834    if( p_sys->latm.i_sub_frames > 1 ) 
    835835        msg_Err( p_dec, "latm sub frames not yet supported, please send a sample" ); 
  • modules/packetizer/vc1.c

    r13ae40b r6d9fde8  
    339339            p_sys->ep.p_ep->p_buffer, p_sys->ep.p_ep->i_buffer ); 
    340340} 
    341 /* ParseIDU: parse an Independant Decoding Unit */ 
     341/* ParseIDU: parse an Independent Decoding Unit */ 
    342342static block_t *ParseIDU( decoder_t *p_dec, block_t *p_frag ) 
    343343{ 
  • modules/services_discovery/upnp_cc.cpp

    r13ae40b r6d9fde8  
    77 * Authors: Rémi Denis-Courmont <rem # videolan.org> 
    88 * 
    9  * Based on original wxWindows patch for VLC, and dependant on CyberLink 
     9 * Based on original wxWindows patch for VLC, and dependent on CyberLink 
    1010 * UPnP library from : 
    1111 *          Satoshi Konno <skonno@cybergarage.org> 
  • modules/video_chroma/i420_rgb16.c

    r6300760 r6d9fde8  
    7979    int         i_red, i_green, i_blue;          /* U and V modified samples */ 
    8080    uint16_t *  p_yuv = p_vout->chroma.p_sys->p_rgb16; 
    81     uint16_t *  p_ybase;                     /* Y dependant conversion table */ 
     81    uint16_t *  p_ybase;                     /* Y dependent conversion table */ 
    8282 
    8383    /* Conversion buffer pointer */ 
     
    229229    int         i_red, i_green, i_blue;          /* U and V modified samples */ 
    230230    uint16_t *  p_yuv = p_vout->chroma.p_sys->p_rgb16; 
    231     uint16_t *  p_ybase;                     /* Y dependant conversion table */ 
     231    uint16_t *  p_ybase;                     /* Y dependent conversion table */ 
    232232 
    233233    /* Conversion buffer pointer */ 
     
    826826    int         i_red, i_green, i_blue;          /* U and V modified samples */ 
    827827    uint32_t *  p_yuv = p_vout->chroma.p_sys->p_rgb32; 
    828     uint32_t *  p_ybase;                     /* Y dependant conversion table */ 
     828    uint32_t *  p_ybase;                     /* Y dependent conversion table */ 
    829829 
    830830    /* Conversion buffer pointer */ 
  • modules/video_filter/panoramix.c

    r5e15258 r6d9fde8  
    4141#ifdef OVERLAP 
    4242    #include <math.h> 
    43     // OS CODE DEPENDANT to get display dimensions 
     43    // OS CODE DEPENDENT to get display dimensions 
    4444    #ifdef SYS_MINGW32 
    4545        #include <windows.h> 
     
    361361    p_vout->p_sys->i_row = var_CreateGetInteger( p_vout, CFG_PREFIX "rows" ); 
    362362 
    363 // OS dependant code :  Autodetect number of displays in wall 
     363// OS dependent code :  Autodetect number of displays in wall 
    364364#ifdef SYS_MINGW32 
    365365    if ((p_vout->p_sys->i_col < 0) || (p_vout->p_sys->i_row < 0) ) 
     
    553553    int    i_offset = 0; 
    554554 
    555 // OS DEPENDANT CODE to get display dimensions 
     555// OS DEPENDENT CODE to get display dimensions 
    556556        if (b_fullscreen) 
    557557        { 
  • projects/mozilla/Makefile.am

    r84d0f81 r6d9fde8  
    9595# which unfortunately references the path of the App using the Plugin, rather than the 
    9696# Plugin itself. Since this Plugin should always be installed in '/Library/Internet Plug-Ins', 
    97 # it is safer to force dylibs to locate dependants through a fixed path 
     97# it is safer to force dylibs to locate dependents through a fixed path 
    9898# 
    9999define FIXEXECPATH 
  • src/misc/update.h

    r85f5092 r6d9fde8  
    116116 
    117117/* The part below is made of consecutive MPIs, their number and size being 
    118  * public-key-algorithm dependant. 
     118 * public-key-algorithm dependent. 
    119119 * 
    120120 * Since we use DSA signatures only, there is 2 integers, r & s, made of: 
  • src/modules/modules.h

    re72368e r6d9fde8  
    154154void  __module_ResetBank       ( vlc_object_t * ); 
    155155 
    156 /* Low-level OS-dependant handler */ 
     156/* Low-level OS-dependent handler */ 
    157157int  module_Call   (module_t *); 
    158158int  module_Load   (vlc_object_t *, const char *, module_handle_t *); 
  • src/modules/os.c

    r0669643 r6d9fde8  
    130130 
    131131/** 
    132  * Load a dynamically linked library using a system dependant method. 
     132 * Load a dynamically linked library using a system dependent method. 
    133133 * 
    134134 * \param p_this vlc object 
     
    242242 * 
    243243 * This function unloads a previously opened dynamically linked library 
    244  * using a system dependant method. No return value is taken in consideration, 
     244 * using a system dependent method. No return value is taken in consideration, 
    245245 * since some libraries sometimes refuse to close properly. 
    246246 * \param handle handle of the library 
  • src/network/getaddrinfo.c

    rc0a2676 r6d9fde8  
    108108/* 
    109109 * getnameinfo() non-thread-safe IPv4-only implementation, 
    110  * Address-family-independant address to hostname translation 
     110 * Address-family-independent address to hostname translation 
    111111 * (reverse DNS lookup in case of IPv4). 
    112112 * 
     
    282282/* 
    283283 * getaddrinfo() non-thread-safe IPv4-only implementation 
    284  * Address-family-independant hostname to address resolution. 
     284 * Address-family-independent hostname to address resolution. 
    285285 * 
    286286 * This is meant for IPv6-unaware systems that do probably not provide 
  • src/vlc.c

    rb19b539 r6d9fde8  
    9797     * - SIGALRM should not happen, but lets stay on the safe side. 
    9898     * - SIGPIPE might happen with sockets and would crash VLC. It MUST be 
    99      *   blocked by any LibVLC-dependant application, in addition to VLC. 
     99     *   blocked by any LibVLC-dependent application, in addition to VLC. 
    100100     * - SIGCHLD is comes after exec*() (such as httpd CGI support) and must 
    101101     *   be dequeued to cleanup zombie processes.