Commit e3bc8828 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

modules/codec/quicktime.c: Disabled all video codecs accept SVQ3

modules/gui/macosx/intf.m: Fixed an inconsistenty in the translation
cvS: ----------------------------------------------------------------------
parent 90ad541f
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* quicktime.c: a quicktime decoder that uses the QT library/dll * quicktime.c: a quicktime decoder that uses the QT library/dll
***************************************************************************** *****************************************************************************
* Copyright (C) 2003 VideoLAN * Copyright (C) 2003 VideoLAN
* $Id: quicktime.c,v 1.7 2003/06/15 22:32:06 hartman Exp $ * $Id: quicktime.c,v 1.8 2003/06/17 14:43:21 hartman Exp $
* *
* Authors: Laurent Aimar <fenrir at via.ecp.fr> * Authors: Laurent Aimar <fenrir at via.ecp.fr>
* Derk-Jan Hartman <thedj at users.sf.net> * Derk-Jan Hartman <thedj at users.sf.net>
...@@ -263,10 +263,10 @@ static int OpenDecoder( vlc_object_t *p_this ) ...@@ -263,10 +263,10 @@ static int OpenDecoder( vlc_object_t *p_this )
switch( p_fifo->i_fourcc ) switch( p_fifo->i_fourcc )
{ {
case VLC_FOURCC('S','V','Q','3'): /* Sorenson v3 */ case VLC_FOURCC('S','V','Q','3'): /* Sorenson v3 */
case VLC_FOURCC('S','V','Q','1'): /* Sorenson v1 */ /* case VLC_FOURCC('S','V','Q','1'): Sorenson v1
case VLC_FOURCC('Z','y','G','o'): case VLC_FOURCC('Z','y','G','o'):
case VLC_FOURCC('V','P','3','1'): case VLC_FOURCC('V','P','3','1'):
case VLC_FOURCC('3','I','V','1'): case VLC_FOURCC('3','I','V','1'): */
case VLC_FOURCC('r','l','e',' '): /* QuickTime animation (RLE) */ case VLC_FOURCC('r','l','e',' '): /* QuickTime animation (RLE) */
case VLC_FOURCC('r','p','z','a'): /* QuickTime Apple Video */ case VLC_FOURCC('r','p','z','a'): /* QuickTime Apple Video */
case VLC_FOURCC('a','z','p','r'): /* QuickTime animation (RLE) */ case VLC_FOURCC('a','z','p','r'): /* QuickTime animation (RLE) */
......
...@@ -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.89 2003/06/09 00:33:34 massiot Exp $ * $Id: intf.m,v 1.90 2003/06/17 14:43:22 hartman 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>
...@@ -395,8 +395,8 @@ int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable, ...@@ -395,8 +395,8 @@ int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
[o_mi_floatontop setTitle: _NS("Float On Top")]; [o_mi_floatontop setTitle: _NS("Float On Top")];
[o_mi_videotrack setTitle: _NS("Video track")]; [o_mi_videotrack setTitle: _NS("Video track")];
[o_mu_videotrack setTitle: _NS("Video track")]; [o_mu_videotrack setTitle: _NS("Video track")];
[o_mi_screen setTitle: _NS("Screen")]; [o_mi_screen setTitle: _NS("Video device")];
[o_mu_screen setTitle: _NS("Screen")]; [o_mu_screen setTitle: _NS("Video device")];
[o_mi_subtitle setTitle: _NS("Subtitles track")]; [o_mi_subtitle setTitle: _NS("Subtitles track")];
[o_mu_subtitle setTitle: _NS("Subtitles track")]; [o_mu_subtitle setTitle: _NS("Subtitles track")];
[o_mi_deinterlace setTitle: _NS("Deinterlace")]; [o_mi_deinterlace setTitle: _NS("Deinterlace")];
......
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