]> git.sesse.net Git - vlc/commitdiff
* more ouput -> output typos
authorDennis van Amerongen <trax@videolan.org>
Sat, 2 Sep 2006 14:32:19 +0000 (14:32 +0000)
committerDennis van Amerongen <trax@videolan.org>
Sat, 2 Sep 2006 14:32:19 +0000 (14:32 +0000)
modules/access/dshow/crossbar.cpp
modules/video_output/directx/direct3d.c

index 28515604f73d5146e8341400cf4afc71111acfd3..7bcb01bce9e946e4415532e60bad7b4929d08ce1 100644 (file)
@@ -260,7 +260,7 @@ HRESULT FindCrossbarRoutes( vlc_object_t *p_this, access_sys_t *p_sys,
             p_sys->crossbar_routes[depth].AudioOutputIndex = outputPinIndexRelated;
 
             msg_Dbg( p_this, "crossbar at depth %d, found route for "
-                     "ouput %ld (type %ld) to input %ld (type %ld)", depth,
+                     "output %ld (type %ld) to input %ld (type %ld)", depth,
                      outputPinIndex, outputPinPhysicalType, inputPinIndex,
                      inputPinPhysicalType );
 
index 2f263034ef14d1929a96d945e0f7bcb48eba4b79..f77059af3dc33e820472c6c079bc3ed46c1f3246 100644 (file)
@@ -861,7 +861,7 @@ D3DFORMAT Direct3DVoutFindFormat(vout_thread_t *p_vout, int i_chroma, D3DFORMAT
     return D3DFMT_UNKNOWN;
 }
 
-static int Direct3DVoutSetOuputFormat(vout_thread_t *p_vout, D3DFORMAT format)
+static int Direct3DVoutSetOutputFormat(vout_thread_t *p_vout, D3DFORMAT format)
 {
     switch( format )
     {
@@ -958,7 +958,7 @@ static int Direct3DVoutCreatePictures( vout_thread_t *p_vout, size_t i_num_pics
     ** typically support more formats than textures
     */ 
     format = Direct3DVoutFindFormat(p_vout, p_vout->render.i_chroma, format);
-    if( VLC_SUCCESS != Direct3DVoutSetOuputFormat(p_vout, format) )
+    if( VLC_SUCCESS != Direct3DVoutSetOutputFormat(p_vout, format) )
     {
         msg_Err(p_vout, "surface pixel format is not supported.");
         return VLC_EGENERIC;