Commit a8d49253 authored by Christophe Massiot's avatar Christophe Massiot

* 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
......@@ -2,7 +2,7 @@
* video_parser.c : video parser thread
*****************************************************************************
* 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>
* Samuel Hocevar <sam@via.ecp.fr>
......@@ -154,11 +154,7 @@ static int RunDecoder ( decoder_fifo_t * p_fifo )
p_vpar->c_loops++;
/* Parse the next sequence, group or picture header */
if( vpar_ParseHeader( p_vpar ) )
{
/* End of sequence */
break;
}
vpar_ParseHeader( p_vpar );
}
}
......
......@@ -2,7 +2,7 @@
* intf.m: MacOS X interface plugin
*****************************************************************************
* 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>
* Christophe Massiot <massiot@via.ecp.fr>
......@@ -291,7 +291,7 @@ int ExecuteOnMainThread( id target, SEL sel, void * p_arg )
[o_msgs_btn_crashlog setTitle: _NS("Open CrashLog")];
/* main menu */
[o_mi_about setTitle: _NS("About VLC Media Player")];
[o_mi_about setTitle: _NS("About VLC media player")];
[o_mi_prefs setTitle: _NS("Preferences")];
[o_mi_hide setTitle: _NS("Hide VLC")];
[o_mi_hide_others setTitle: _NS("Hide Others")];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment