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
a8d49253
Commit
a8d49253
authored
Feb 08, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/mpeg_video/parser.c: Do not stop decoding on SEQUENCE_END_CODE
* modules/gui/macosx/intf.m: VLC _m_edia _p_layer.
parent
b01c9f78
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
modules/codec/mpeg_video/parser.c
modules/codec/mpeg_video/parser.c
+2
-6
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+2
-2
No files found.
modules/codec/mpeg_video/parser.c
View file @
a8d49253
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* video_parser.c : video parser thread
* video_parser.c : video parser thread
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* Copyright (C) 1999-2001 VideoLAN
* $Id: parser.c,v 1.
9 2002/12/18 14:17:10 sam
Exp $
* $Id: parser.c,v 1.
10 2003/02/08 20:32:43 massiot
Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
...
@@ -154,11 +154,7 @@ static int RunDecoder ( decoder_fifo_t * p_fifo )
...
@@ -154,11 +154,7 @@ static int RunDecoder ( decoder_fifo_t * p_fifo )
p_vpar
->
c_loops
++
;
p_vpar
->
c_loops
++
;
/* Parse the next sequence, group or picture header */
/* Parse the next sequence, group or picture header */
if
(
vpar_ParseHeader
(
p_vpar
)
)
vpar_ParseHeader
(
p_vpar
);
{
/* End of sequence */
break
;
}
}
}
}
}
...
...
modules/gui/macosx/intf.m
View file @
a8d49253
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* intf.m: MacOS X interface plugin
* intf.m: MacOS X interface plugin
*****************************************************************************
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* Copyright (C) 2002-2003 VideoLAN
* $Id: intf.m,v 1.
49 2003/02/08 17:26:00
massiot Exp $
* $Id: intf.m,v 1.
50 2003/02/08 20:32:44
massiot Exp $
*
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
* Christophe Massiot <massiot@via.ecp.fr>
...
@@ -291,7 +291,7 @@ int ExecuteOnMainThread( id target, SEL sel, void * p_arg )
...
@@ -291,7 +291,7 @@ int ExecuteOnMainThread( id target, SEL sel, void * p_arg )
[
o_msgs_btn_crashlog
setTitle
:
_NS
(
"Open CrashLog"
)];
[
o_msgs_btn_crashlog
setTitle
:
_NS
(
"Open CrashLog"
)];
/* main menu */
/* main menu */
[
o_mi_about
setTitle
:
_NS
(
"About VLC
Media P
layer"
)];
[
o_mi_about
setTitle
:
_NS
(
"About VLC
media p
layer"
)];
[
o_mi_prefs
setTitle
:
_NS
(
"Preferences"
)];
[
o_mi_prefs
setTitle
:
_NS
(
"Preferences"
)];
[
o_mi_hide
setTitle
:
_NS
(
"Hide VLC"
)];
[
o_mi_hide
setTitle
:
_NS
(
"Hide VLC"
)];
[
o_mi_hide_others
setTitle
:
_NS
(
"Hide Others"
)];
[
o_mi_hide_others
setTitle
:
_NS
(
"Hide Others"
)];
...
...
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