Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
43ef6e10
Commit
43ef6e10
authored
Jan 29, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/speex.c, src/misc/win32_specific.c: compilation fixes.
parent
2d9249bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
8 deletions
+11
-8
modules/codec/speex.c
modules/codec/speex.c
+2
-1
src/misc/win32_specific.c
src/misc/win32_specific.c
+9
-7
No files found.
modules/codec/speex.c
View file @
43ef6e10
...
...
@@ -2,7 +2,7 @@
* speex.c: speex decoder/packetizer/encoder module making use of libspeex.
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: speex.c,v 1.1
1 2004/01/29 17:51:07 zorglub
Exp $
* $Id: speex.c,v 1.1
2 2004/01/29 19:38:17 gbazin
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -464,6 +464,7 @@ static void ParseSpeexComments( decoder_t *p_dec, ogg_packet *p_oggpacket )
input_InfoCategory
(
p_input
,
_
(
"Speex comment"
)
);
playlist_t
*
p_playlist
=
vlc_object_find
(
p_dec
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
playlist_item_t
*
p_item
;
char
*
p_buf
=
(
char
*
)
p_oggpacket
->
packet
;
SpeexMode
*
p_mode
;
...
...
src/misc/win32_specific.c
View file @
43ef6e10
...
...
@@ -2,7 +2,7 @@
* win32_specific.c: Win32 specific features
*****************************************************************************
* Copyright (C) 2001-2004 VideoLAN
* $Id: win32_specific.c,v 1.3
3 2004/01/29 17:51:08 zorglub
Exp $
* $Id: win32_specific.c,v 1.3
4 2004/01/29 19:38:17 gbazin
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -297,7 +297,7 @@ LRESULT CALLBACK WMCOPYWNDPROC( HWND hwnd, UINT uMsg, WPARAM wParam,
if
(
pwm_data
->
lpData
)
{
int
i_argc
,
i_data
,
i_opt
,
i_options
,
i_id
,
i_pos
,
j
;
int
i_argc
,
i_data
,
i_opt
,
i_options
;
char
**
ppsz_argv
;
char
*
p_data
=
(
char
*
)
pwm_data
->
lpData
;
...
...
@@ -321,11 +321,13 @@ LRESULT CALLBACK WMCOPYWNDPROC( HWND hwnd, UINT uMsg, WPARAM wParam,
{
i_options
++
;
}
i_id
=
playlist_Add
(
p_playlist
,
ppsz_argv
[
i_opt
],
ppsz_argv
[
i_opt
],
PLAYLIST_APPEND
|
(
i_opt
?
0
:
PLAYLIST_GO
),
PLAYLIST_END
,
-
1
,
ppsz_argv
[
i_opt
+
1
],
i_options
);
playlist_AddExt
(
p_playlist
,
ppsz_argv
[
i_opt
],
ppsz_argv
[
i_opt
],
PLAYLIST_APPEND
|
(
i_opt
?
0
:
PLAYLIST_GO
),
PLAYLIST_END
,
-
1
,
(
char
const
**
)(
i_options
?
&
ppsz_argv
[
i_opt
+
1
]
:
NULL
),
i_options
);
i_opt
+=
i_options
;
}
...
...
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