Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
f1632229
Commit
f1632229
authored
Nov 21, 2001
by
Jon Lech Johansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don`t use long long, use u64/s64 (int_types.h).
Fixed a stale pointer in mpeg_vdec_Run().
parent
25c83d44
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
plugins/mpeg_vdec/video_parser.c
plugins/mpeg_vdec/video_parser.c
+4
-3
src/misc/netutils.c
src/misc/netutils.c
+2
-2
No files found.
plugins/mpeg_vdec/video_parser.c
View file @
f1632229
...
...
@@ -2,7 +2,7 @@
* video_parser.c : video parser thread
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: video_parser.c,v 1.
2 2001/11/15 17:39:12 sam
Exp $
* $Id: video_parser.c,v 1.
3 2001/11/21 22:33:03 jlj
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
...
...
@@ -125,6 +125,7 @@ static int mpeg_vdec_Probe( probedata_t *p_data )
static
int
mpeg_vdec_Run
(
decoder_config_t
*
p_config
)
{
vpar_thread_t
*
p_vpar
;
boolean_t
b_error
;
intf_DbgMsg
(
"vpar debug: video parser thread created. Initializing..."
);
...
...
@@ -173,7 +174,7 @@ static int mpeg_vdec_Run ( decoder_config_t * p_config )
/*
* Error loop
*/
if
(
p_vpar
->
p_fifo
->
b_error
)
if
(
(
b_error
=
p_vpar
->
p_fifo
->
b_error
)
)
{
mpeg_vdec_ErrorThread
(
p_vpar
);
}
...
...
@@ -181,7 +182,7 @@ static int mpeg_vdec_Run ( decoder_config_t * p_config )
/* End of thread */
mpeg_vdec_EndThread
(
p_vpar
);
if
(
p_vpar
->
p_fifo
->
b_error
)
if
(
b_error
)
{
return
(
-
1
);
}
...
...
src/misc/netutils.c
View file @
f1632229
...
...
@@ -2,7 +2,7 @@
* netutils.c: various network functions
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: netutils.c,v 1.4
7 2001/11/21 16:47:46 massiot
Exp $
* $Id: netutils.c,v 1.4
8 2001/11/21 22:33:03 jlj
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Benoit Steiner <benny@via.ecp.fr>
...
...
@@ -335,7 +335,7 @@ int network_ChannelJoin( int i_channel )
/* Build the message */
sprintf
(
psz_mess
,
"%d %u %lu %s
\n
"
,
i_channel
,
VLCS_VERSION
,
(
unsigned
long
)(
mdate
()
/
(
u
nsigned
long
long
)
1000000
),
(
unsigned
long
)(
mdate
()
/
(
u
64
)
1000000
),
psz_mac
);
/* Send the message */
...
...
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