Commit fc00a930 authored by Sam Hocevar's avatar Sam Hocevar

* ./src/input/mpeg_system.c: removed unnecessarily verbose message.

parent f9ba120b
...@@ -4,6 +4,22 @@ ...@@ -4,6 +4,22 @@
HEAD HEAD
* ./src/input/mpeg_system.c: removed unnecessarily verbose message.
* ./src/video_output/video_output.c: fixed the "picture has invalid status"
bug which might have been the cause of crashes.
* ./plugins/filter/crop.c: attempt at an automatic border cropping filter,
using "--filter crop --autocrop".
* ./vlc.spec: added missing filters to the RPM generation.
* ./plugins/macosx/*: channel change support on Mac OS X.
* ./extras/MacOSX/Resources/vlc.icns: new OS X icon, courtesy of Benjamin
Mironer <bmironer@noos.fr>.
* ./plugins/filter/crop.c: crop filter. Usage examples:
--filter crop --crop-geometry 640x480
--filter crop --crop-geometry 320x200+10+10
* ./plugins/macosx/intf_vlc_wrapper.m: fixed a bug in the chapter handling.
* ./plugins/macosx/vout_vlc_wrapper.m: more keystrokes.
* ./plugins/chroma/i420_yuy2.h: simplified the chroma code. Please test
under BeOS and QNX.
* ./plugins/macosx/intf_vlc_wrapper.m: fix for non-ASCII filenames in the * ./plugins/macosx/intf_vlc_wrapper.m: fix for non-ASCII filenames in the
MacOS X interface, courtesy of Watanabe Go <go@dsl.gr.jp>. MacOS X interface, courtesy of Watanabe Go <go@dsl.gr.jp>.
* ./plugins/chroma/i420_yuy2.h: fixed an old overflow bug spotted by * ./plugins/chroma/i420_yuy2.h: fixed an old overflow bug spotted by
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mpeg_system.c: TS, PS and PES management * mpeg_system.c: TS, PS and PES management
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * Copyright (C) 1998-2001 VideoLAN
* $Id: mpeg_system.c,v 1.97 2002/05/27 16:01:42 fenrir Exp $ * $Id: mpeg_system.c,v 1.97.2.1 2002/06/02 10:55:53 sam Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* Michel Lespinasse <walken@via.ecp.fr> * Michel Lespinasse <walken@via.ecp.fr>
...@@ -1234,8 +1234,6 @@ void input_DemuxTS( input_thread_t * p_input, data_packet_t * p_data, ...@@ -1234,8 +1234,6 @@ void input_DemuxTS( input_thread_t * p_input, data_packet_t * p_data,
* draft. As there is nothing interesting in this packet * draft. As there is nothing interesting in this packet
* (except PCR that have already been handled), we can trash * (except PCR that have already been handled), we can trash
* the packet. */ * the packet. */
intf_WarnMsg( 3, "input: packet without payload received "
"by TS demux" );
b_trash = 1; b_trash = 1;
} }
else if( i_dummy <= 0 ) else if( i_dummy <= 0 )
......
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