]> git.sesse.net Git - vlc/commitdiff
* modules/access/dshow/dshow.cpp: compilation fix.
authorGildas Bazin <gbazin@videolan.org>
Sun, 15 Aug 2004 15:05:11 +0000 (15:05 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sun, 15 Aug 2004 15:05:11 +0000 (15:05 +0000)
modules/access/dshow/dshow.cpp

index 926d3d8dd5616327d9566556ec9f1e44591c5eb6..78fcba569ad5489c8b9464e2bd76625ecf02f1a1 100644 (file)
@@ -84,20 +84,6 @@ static void PropertiesPage( vlc_object_t *, IBaseFilter *,
  *  u8      data
  */
 
-static void SetDWBE( uint8_t *p, uint32_t dw )
-{
-    p[0] = (dw >> 24)&0xff;
-    p[1] = (dw >> 16)&0xff;
-    p[2] = (dw >>  8)&0xff;
-    p[3] = (dw      )&0xff;
-}
-
-static void SetQWBE( uint8_t *p, uint64_t qw )
-{
-    SetDWBE( p, (qw >> 32)&0xffffffff );
-    SetDWBE( &p[4], qw&0xffffffff );
-}
-
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/