Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
6d9fde80
Commit
6d9fde80
authored
May 29, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spelling
parent
522baa53
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
23 additions
and
23 deletions
+23
-23
include/vlc_vout.h
include/vlc_vout.h
+2
-2
modules/access/mms/asf.h
modules/access/mms/asf.h
+1
-1
modules/codec/ffmpeg/ffmpeg.h
modules/codec/ffmpeg/ffmpeg.h
+1
-1
modules/gui/skins2/win32/win32_graphics.cpp
modules/gui/skins2/win32/win32_graphics.cpp
+1
-1
modules/misc/quartztext.c
modules/misc/quartztext.c
+1
-1
modules/packetizer/mpeg4audio.c
modules/packetizer/mpeg4audio.c
+1
-1
modules/packetizer/vc1.c
modules/packetizer/vc1.c
+1
-1
modules/services_discovery/upnp_cc.cpp
modules/services_discovery/upnp_cc.cpp
+1
-1
modules/video_chroma/i420_rgb16.c
modules/video_chroma/i420_rgb16.c
+3
-3
modules/video_filter/panoramix.c
modules/video_filter/panoramix.c
+3
-3
projects/mozilla/Makefile.am
projects/mozilla/Makefile.am
+1
-1
src/misc/update.h
src/misc/update.h
+1
-1
src/modules/modules.h
src/modules/modules.h
+1
-1
src/modules/os.c
src/modules/os.c
+2
-2
src/network/getaddrinfo.c
src/network/getaddrinfo.c
+2
-2
src/vlc.c
src/vlc.c
+1
-1
No files found.
include/vlc_vout.h
View file @
6d9fde80
...
...
@@ -382,7 +382,7 @@ typedef struct vout_chroma_t
/** conversion functions */
vout_chroma_convert_t
*
pf_convert
;
/** Private module-depend
a
nt data */
/** Private module-depend
e
nt data */
chroma_sys_t
*
p_sys
;
/* private data */
/** Plugin used and shortcuts to access its capabilities */
...
...
@@ -396,7 +396,7 @@ typedef struct vout_chroma_t
/**
* Video output thread descriptor
*
* Any independ
a
nt video output device, such as an X11 window or a GGI device,
* Any independ
e
nt video output device, such as an X11 window or a GGI device,
* is represented by a video output thread, and described using the following
* structure.
*/
...
...
modules/access/mms/asf.h
View file @
6d9fde80
...
...
@@ -24,7 +24,7 @@
/****************************************************************************
* XXX:
* Definitions and data duplicated from asf demuxers but I want access
* and demux plugins to be independ
a
nt
* and demux plugins to be independ
e
nt
*
****************************************************************************/
...
...
modules/codec/ffmpeg/ffmpeg.h
View file @
6d9fde80
...
...
@@ -166,7 +166,7 @@ N_("<filterName>[:<option>[:<option>...]][[,|/][-]<filterName>[:<option>...]]...
"tn:64:128:256\n" \
"Filters Options\n" \
"short long name short long option Description\n" \
"* * a autoq cpu power depend
a
nt enabler\n" \
"* * a autoq cpu power depend
e
nt enabler\n" \
" c chrom chrominance filtring enabled\n" \
" y nochrom chrominance filtring disabled\n" \
"hb hdeblock (2 Threshold) horizontal deblocking filter\n" \
...
...
modules/gui/skins2/win32/win32_graphics.cpp
View file @
6d9fde80
...
...
@@ -107,7 +107,7 @@ void Win32Graphics::drawBitmap( const GenericBitmap &rBitmap,
bmpInfo
.
bmiHeader
.
biCompression
=
BI_RGB
;
bmpInfo
.
bmiHeader
.
biSizeImage
=
width
*
height
*
4
;
// Create a DIB (Device Independ
a
nt Bitmap) and associate it with
// Create a DIB (Device Independ
e
nt Bitmap) and associate it with
// a temporary DC
HDC
hDC
=
CreateCompatibleDC
(
m_hDC
);
HBITMAP
hBmp
=
CreateDIBSection
(
hDC
,
&
bmpInfo
,
DIB_RGB_COLORS
,
...
...
modules/misc/quartztext.c
View file @
6d9fde80
...
...
@@ -1032,7 +1032,7 @@ static offscreen_bitmap_t *Compose( int i_text_align, UniChar *psz_utf16_str, ui
// you move down the page
y
-=
ascent
;
// Set the outlining for this line to be depend
a
nt on the size of the line -
// Set the outlining for this line to be depend
e
nt on the size of the line -
// make it about 5% of the ascent, with a minimum at 1.0
float
f_thickness
=
FixedToFloat
(
ascent
)
*
0
.
05
;
CGContextSetLineWidth
(
p_context
,
((
f_thickness
>
1
.
0
)
?
1
.
0
:
f_thickness
));
...
...
modules/packetizer/mpeg4audio.c
View file @
6d9fde80
...
...
@@ -830,7 +830,7 @@ static int LOASParse( decoder_t *p_dec, uint8_t *p_buffer, int i_buffer )
if
(
!
p_sys
->
b_latm_cfg
)
return
0
;
/* FIXME do we need to split the subframe into independ
a
nt packet ? */
/* FIXME do we need to split the subframe into independ
e
nt packet ? */
if
(
p_sys
->
latm
.
i_sub_frames
>
1
)
msg_Err
(
p_dec
,
"latm sub frames not yet supported, please send a sample"
);
...
...
modules/packetizer/vc1.c
View file @
6d9fde80
...
...
@@ -338,7 +338,7 @@ static void BuildExtraData( decoder_t *p_dec )
memcpy
(
(
uint8_t
*
)
p_es
->
p_extra
+
p_sys
->
sh
.
p_sh
->
i_buffer
,
p_sys
->
ep
.
p_ep
->
p_buffer
,
p_sys
->
ep
.
p_ep
->
i_buffer
);
}
/* ParseIDU: parse an Independ
a
nt Decoding Unit */
/* ParseIDU: parse an Independ
e
nt Decoding Unit */
static
block_t
*
ParseIDU
(
decoder_t
*
p_dec
,
block_t
*
p_frag
)
{
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
...
...
modules/services_discovery/upnp_cc.cpp
View file @
6d9fde80
...
...
@@ -6,7 +6,7 @@
*
* Authors: Rémi Denis-Courmont <rem # videolan.org>
*
* Based on original wxWindows patch for VLC, and depend
a
nt on CyberLink
* Based on original wxWindows patch for VLC, and depend
e
nt on CyberLink
* UPnP library from :
* Satoshi Konno <skonno@cybergarage.org>
*
...
...
modules/video_chroma/i420_rgb16.c
View file @
6d9fde80
...
...
@@ -78,7 +78,7 @@ void I420_RGB16_dither( vout_thread_t *p_vout, picture_t *p_src,
int
i_uval
,
i_vval
;
/* U and V samples */
int
i_red
,
i_green
,
i_blue
;
/* U and V modified samples */
uint16_t
*
p_yuv
=
p_vout
->
chroma
.
p_sys
->
p_rgb16
;
uint16_t
*
p_ybase
;
/* Y depend
a
nt conversion table */
uint16_t
*
p_ybase
;
/* Y depend
e
nt conversion table */
/* Conversion buffer pointer */
uint16_t
*
p_buffer_start
=
(
uint16_t
*
)
p_vout
->
chroma
.
p_sys
->
p_buffer
;
...
...
@@ -228,7 +228,7 @@ void I420_RGB16( vout_thread_t *p_vout, picture_t *p_src,
int
i_uval
,
i_vval
;
/* U and V samples */
int
i_red
,
i_green
,
i_blue
;
/* U and V modified samples */
uint16_t
*
p_yuv
=
p_vout
->
chroma
.
p_sys
->
p_rgb16
;
uint16_t
*
p_ybase
;
/* Y depend
a
nt conversion table */
uint16_t
*
p_ybase
;
/* Y depend
e
nt conversion table */
/* Conversion buffer pointer */
uint16_t
*
p_buffer_start
=
(
uint16_t
*
)
p_vout
->
chroma
.
p_sys
->
p_buffer
;
...
...
@@ -825,7 +825,7 @@ void I420_RGB32( vout_thread_t *p_vout, picture_t *p_src,
int
i_uval
,
i_vval
;
/* U and V samples */
int
i_red
,
i_green
,
i_blue
;
/* U and V modified samples */
uint32_t
*
p_yuv
=
p_vout
->
chroma
.
p_sys
->
p_rgb32
;
uint32_t
*
p_ybase
;
/* Y depend
a
nt conversion table */
uint32_t
*
p_ybase
;
/* Y depend
e
nt conversion table */
/* Conversion buffer pointer */
uint32_t
*
p_buffer_start
=
(
uint32_t
*
)
p_vout
->
chroma
.
p_sys
->
p_buffer
;
...
...
modules/video_filter/panoramix.c
View file @
6d9fde80
...
...
@@ -40,7 +40,7 @@
#define OVERLAP 2350
#ifdef OVERLAP
#include <math.h>
// OS CODE DEPEND
A
NT to get display dimensions
// OS CODE DEPEND
E
NT to get display dimensions
#ifdef SYS_MINGW32
#include <windows.h>
#else
...
...
@@ -360,7 +360,7 @@ case VLC_FOURCC('c','y','u','v'): // packed by 2
p_vout
->
p_sys
->
i_col
=
var_CreateGetInteger
(
p_vout
,
CFG_PREFIX
"cols"
);
p_vout
->
p_sys
->
i_row
=
var_CreateGetInteger
(
p_vout
,
CFG_PREFIX
"rows"
);
// OS depend
a
nt code : Autodetect number of displays in wall
// OS depend
e
nt code : Autodetect number of displays in wall
#ifdef SYS_MINGW32
if
((
p_vout
->
p_sys
->
i_col
<
0
)
||
(
p_vout
->
p_sys
->
i_row
<
0
)
)
{
...
...
@@ -552,7 +552,7 @@ static int AdjustHeight( vout_thread_t *p_vout )
double
d_halfLength_calculated
;
int
i_offset
=
0
;
// OS DEPEND
A
NT CODE to get display dimensions
// OS DEPEND
E
NT CODE to get display dimensions
if
(
b_fullscreen
)
{
#ifdef SYS_MINGW32
...
...
projects/mozilla/Makefile.am
View file @
6d9fde80
...
...
@@ -94,7 +94,7 @@ npvlc.rsrc: $(srcdir)/vlc.r
# Plugin uses shared libraries that are located relatively through @executable_path,
# which unfortunately references the path of the App using the Plugin, rather than the
# Plugin itself. Since this Plugin should always be installed in '/Library/Internet Plug-Ins',
# it is safer to force dylibs to locate depend
a
nts through a fixed path
# it is safer to force dylibs to locate depend
e
nts through a fixed path
#
define
FIXEXECPATH
otool
-L
"$$dylib"
|
\
...
...
src/misc/update.h
View file @
6d9fde80
...
...
@@ -115,7 +115,7 @@ struct signature_packet_t
}
specific
;
/* The part below is made of consecutive MPIs, their number and size being
* public-key-algorithm depend
a
nt.
* public-key-algorithm depend
e
nt.
*
* Since we use DSA signatures only, there is 2 integers, r & s, made of:
* 2 bytes for the integer length (scalar number)
...
...
src/modules/modules.h
View file @
6d9fde80
...
...
@@ -153,7 +153,7 @@ void __module_EndBank ( vlc_object_t * );
#define module_ResetBank(a) __module_ResetBank(VLC_OBJECT(a))
void
__module_ResetBank
(
vlc_object_t
*
);
/* Low-level OS-depend
a
nt handler */
/* Low-level OS-depend
e
nt handler */
int
module_Call
(
module_t
*
);
int
module_Load
(
vlc_object_t
*
,
const
char
*
,
module_handle_t
*
);
void
module_Unload
(
module_handle_t
);
...
...
src/modules/os.c
View file @
6d9fde80
...
...
@@ -129,7 +129,7 @@ int module_Call( module_t *p_module )
}
/**
* Load a dynamically linked library using a system depend
a
nt method.
* Load a dynamically linked library using a system depend
e
nt method.
*
* \param p_this vlc object
* \param psz_file library file
...
...
@@ -241,7 +241,7 @@ int module_Load( vlc_object_t *p_this, const char *psz_file,
* CloseModule: unload a dynamic library
*
* This function unloads a previously opened dynamically linked library
* using a system depend
a
nt method. No return value is taken in consideration,
* using a system depend
e
nt method. No return value is taken in consideration,
* since some libraries sometimes refuse to close properly.
* \param handle handle of the library
* \return nothing
...
...
src/network/getaddrinfo.c
View file @
6d9fde80
...
...
@@ -107,7 +107,7 @@ const char *vlc_gai_strerror (int errnum)
NI_DGRAM)
/*
* getnameinfo() non-thread-safe IPv4-only implementation,
* Address-family-independ
a
nt address to hostname translation
* Address-family-independ
e
nt address to hostname translation
* (reverse DNS lookup in case of IPv4).
*
* This is meant for use on old IP-enabled systems that are not IPv6-aware,
...
...
@@ -281,7 +281,7 @@ makeipv4info (int type, int proto, u_long ip, u_short port, const char *name)
/*
* getaddrinfo() non-thread-safe IPv4-only implementation
* Address-family-independ
a
nt hostname to address resolution.
* Address-family-independ
e
nt hostname to address resolution.
*
* This is meant for IPv6-unaware systems that do probably not provide
* getaddrinfo(), but still have old function gethostbyname().
...
...
src/vlc.c
View file @
6d9fde80
...
...
@@ -96,7 +96,7 @@ int main( int i_argc, const char *ppsz_argv[] )
/* Signals that cause a no-op:
* - SIGALRM should not happen, but lets stay on the safe side.
* - SIGPIPE might happen with sockets and would crash VLC. It MUST be
* blocked by any LibVLC-depend
a
nt application, in addition to VLC.
* blocked by any LibVLC-depend
e
nt application, in addition to VLC.
* - SIGCHLD is comes after exec*() (such as httpd CGI support) and must
* be dequeued to cleanup zombie processes.
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment