Changeset 62e73f508b74167e0a9ceec13b155abb2f7aaaa0
- Timestamp:
- 06/20/02 00:47:14 (6 years ago)
- git-parent:
- Files:
-
- ChangeLog (modified) (1 diff)
- README.MacOSX.rtf (modified) (1 diff)
- doc/release-howto.txt (modified) (1 diff)
- extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib (modified) (1 diff)
- extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib (modified) (2 diffs)
- ipkg/control (modified) (1 diff)
- plugins/macosx/intf_controller.h (modified) (2 diffs)
- plugins/macosx/intf_controller.m (modified) (2 diffs)
- vlc.spec (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ChangeLog
r74ea8fa r62e73f5 68 68 69 69 0.4.2 70 Not released yet 71 72 * ./plugins/gtk/gnome_callbacks.c: fixed a crash when activating preferences 70 Mon, 20 Jun 2002 00:41:26 +0200 71 72 * ./plugins/macosx: new controls for audio output, and deinterlacing 73 support. 74 * ./plugins/macosx: fixed a bug with language and subtitle menus. 75 * ./plugins/access/http.c: should be more tolerant with old servers and 76 non-seekable streams. 77 * ./plugins/filter/deinterlace.c: backported new deinterlacing routines. 78 * ./include/threads.h, ./include/threads_funcs.h: backported the new Win32 79 cond_wait implementation from MAIN. 80 * ./plugins/gtk/gnome_callbacks.c: fixed a crash when activating preferences 73 81 from the popup menu. 74 82 README.MacOSX.rtf
re405691 r62e73f5 83 83 \ 84 84 \ 85 86 \f1\b \ul 9. How do I enable deinterlacing ?\ 87 88 \f0\b0 \ulnone You must select the "Deinterlace" menu item 89 \f1\b before 90 \f0\b0 opening any file. If the item is selected while reading a file, nothing will happen. This is a known issue, please do not report it.\ 91 \ 92 \ 85 93 Thanks for reading this file. For additional information, subscribe to the vlc mailing list on \ul http://www.videolan.org/.\ulnone \ 86 94 -- \ 87 95 Christophe Massiot <massiot@via.ecp.fr>, for the VideoLAN team.\ 88 $Id: README.MacOSX.rtf,v 1. 5 2002/06/18 23:18:40massiot Exp $}96 $Id: README.MacOSX.rtf,v 1.6 2002/06/19 22:47:14 massiot Exp $} doc/release-howto.txt
rf8a2f7c r62e73f5 15 15 � ipkg/control 16 16 � debian/changelog 17 � extras/MacOSX/vlc.pbprj/project.pbxproj 17 18 - mettre �our les ChangeLog et la TODO list pour ceux qui auraient 18 19 �urdiment oubli�e l'updater �haque commit extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
rb60815c r62e73f5 4 4 { 5 5 ACTIONS = { 6 deinterlace = id; 6 7 eject = id; 7 8 faster = id; extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
rd680938 r62e73f5 10 10 <string>401 417 350 182 0 0 1152 746 </string> 11 11 <key>29</key> 12 <string> 809 162262 44 0 0 1152 746 </string>12 <string>367 465 262 44 0 0 1152 746 </string> 13 13 <key>445</key> 14 14 <string>347 561 370 117 0 0 1152 746 </string> … … 20 20 <key>IBOpenObjects</key> 21 21 <array> 22 <integer>528</integer> 22 23 <integer>29</integer> 23 <integer>528</integer>24 24 </array> 25 25 <key>IBSystem Version</key> ipkg/control
rdfac0d1 r62e73f5 2 2 Section: graphics 3 3 Priority: optional 4 Version: 0. 5.0-cvs4 Version: 0.4.2 5 5 Release: 1 6 6 Architecture: arm plugins/macosx/intf_controller.h
r9b21679 r62e73f5 3 3 ***************************************************************************** 4 4 * Copyright (C) 2001 VideoLAN 5 * $Id: intf_controller.h,v 1.1 0 2002/06/02 12:16:31massiot Exp $5 * $Id: intf_controller.h,v 1.11 2002/06/19 22:47:14 massiot Exp $ 6 6 * 7 7 * Authors: Florian G. Pflug <fgp@phlo.org> … … 80 80 - (IBAction)nextChannel:(id)sender; 81 81 - (IBAction)loop:(id)sender; 82 - (IBAction)deinterlace:(id)sender; 82 83 - (IBAction)mute:(id)sender; 83 84 - (IBAction)fullscreen:(id)fullscreen; plugins/macosx/intf_controller.m
rd1adb68 r62e73f5 3 3 ***************************************************************************** 4 4 * Copyright (C) 2001 VideoLAN 5 * $Id: intf_controller.m,v 1. 9 2002/06/08 19:32:19 samExp $5 * $Id: intf_controller.m,v 1.10 2002/06/19 22:47:14 massiot Exp $ 6 6 * 7 7 * Authors: Florian G. Pflug <fgp@phlo.org> … … 192 192 } 193 193 194 - (IBAction)deinterlace:(id)sender 195 { 196 NSMenuItem * item = (NSMenuItem *)sender; 197 198 if ( [item state] == NSOnState ) 199 { 200 config_PutPszVariable( "filter", NULL ); 201 [item setState:NSOffState]; 202 } 203 else 204 { 205 config_PutPszVariable( "filter", "deinterlace:blend" ); 206 [item setState:NSOnState]; 207 } 208 } 209 194 210 - (IBAction)mute:(id)sender 195 211 { vlc.spec
rdfac0d1 r62e73f5 2 2 3 3 %define name vlc 4 %define vlc_ver 0. 5.0-cvs4 %define vlc_ver 0.4.2 5 5 %define version %vlc_ver 6 6 … … 246 246 # icons 247 247 mkdir -p %{buildroot}/{%{_miconsdir},%{_liconsdir}} 248 install -m 644 %buildroot/%_datadir/v lc/vlc16x16.png %buildroot/%{_miconsdir}/vlc.png249 install -m 644 %buildroot/%_datadir/v lc/vlc32x32.png %buildroot/%{_iconsdir}/vlc.png250 install -m 644 %buildroot/%_datadir/v lc/vlc48x48.png %buildroot/%{_liconsdir}/vlc.png251 install -m 644 %buildroot/%_datadir/v lc/gnome-vlc16x16.png %buildroot/%{_miconsdir}/gnome-vlc.png252 install -m 644 %buildroot/%_datadir/v lc/gnome-vlc32x32.png %buildroot/%{_iconsdir}/gnome-vlc.png253 install -m 644 %buildroot/%_datadir/v lc/gnome-vlc48x48.png %buildroot/%{_liconsdir}/gnome-vlc.png254 install -m 644 %buildroot/%_datadir/v lc/gvlc16x16.png %buildroot/%{_miconsdir}/gvlc.png255 install -m 644 %buildroot/%_datadir/v lc/gvlc32x32.png %buildroot/%{_iconsdir}/gvlc.png256 install -m 644 %buildroot/%_datadir/v lc/gvlc48x48.png %buildroot/%{_liconsdir}/gvlc.png257 install -m 644 %buildroot/%_datadir/v lc/kvlc16x16.png %buildroot/%{_miconsdir}/kvlc.png258 install -m 644 %buildroot/%_datadir/v lc/kvlc32x32.png %buildroot/%{_iconsdir}/kvlc.png259 install -m 644 %buildroot/%_datadir/v lc/kvlc48x48.png %buildroot/%{_liconsdir}/kvlc.png260 install -m 644 %buildroot/%_datadir/v lc/qvlc16x16.png %buildroot/%{_miconsdir}/qvlc.png261 install -m 644 %buildroot/%_datadir/v lc/qvlc32x32.png %buildroot/%{_iconsdir}/qvlc.png262 install -m 644 %buildroot/%_datadir/v lc/qvlc48x48.png %buildroot/%{_liconsdir}/qvlc.png248 install -m 644 %buildroot/%_datadir/videolan/vlc16x16.png %buildroot/%{_miconsdir}/vlc.png 249 install -m 644 %buildroot/%_datadir/videolan/vlc32x32.png %buildroot/%{_iconsdir}/vlc.png 250 install -m 644 %buildroot/%_datadir/videolan/vlc48x48.png %buildroot/%{_liconsdir}/vlc.png 251 install -m 644 %buildroot/%_datadir/videolan/gnome-vlc16x16.png %buildroot/%{_miconsdir}/gnome-vlc.png 252 install -m 644 %buildroot/%_datadir/videolan/gnome-vlc32x32.png %buildroot/%{_iconsdir}/gnome-vlc.png 253 install -m 644 %buildroot/%_datadir/videolan/gnome-vlc48x48.png %buildroot/%{_liconsdir}/gnome-vlc.png 254 install -m 644 %buildroot/%_datadir/videolan/gvlc16x16.png %buildroot/%{_miconsdir}/gvlc.png 255 install -m 644 %buildroot/%_datadir/videolan/gvlc32x32.png %buildroot/%{_iconsdir}/gvlc.png 256 install -m 644 %buildroot/%_datadir/videolan/gvlc48x48.png %buildroot/%{_liconsdir}/gvlc.png 257 install -m 644 %buildroot/%_datadir/videolan/kvlc16x16.png %buildroot/%{_miconsdir}/kvlc.png 258 install -m 644 %buildroot/%_datadir/videolan/kvlc32x32.png %buildroot/%{_iconsdir}/kvlc.png 259 install -m 644 %buildroot/%_datadir/videolan/kvlc48x48.png %buildroot/%{_liconsdir}/kvlc.png 260 install -m 644 %buildroot/%_datadir/videolan/qvlc16x16.png %buildroot/%{_miconsdir}/qvlc.png 261 install -m 644 %buildroot/%_datadir/videolan/qvlc32x32.png %buildroot/%{_iconsdir}/qvlc.png 262 install -m 644 %buildroot/%_datadir/videolan/qvlc48x48.png %buildroot/%{_liconsdir}/qvlc.png 263 263 264 264 %post … … 275 275 %{_bindir}/vlc 276 276 277 %dir %{_libdir}/v lc278 %{_libdir}/v lc/ac3_spdif.so279 %{_libdir}/v lc/avi.so280 %{_libdir}/v lc/dsp.so281 %{_libdir}/v lc/dummy.so282 %{_libdir}/v lc/dvd.so283 %{_libdir}/v lc/fb.so284 %{_libdir}/v lc/file.so285 %{_libdir}/v lc/filter_clone.so286 %{_libdir}/v lc/filter_crop.so287 %{_libdir}/v lc/filter_deinterlace.so288 %{_libdir}/v lc/filter_distort.so289 %{_libdir}/v lc/filter_invert.so290 %{_libdir}/v lc/filter_transform.so291 %{_libdir}/v lc/filter_wall.so292 %{_libdir}/v lc/fx_scope.so293 %{_libdir}/v lc/http.so294 %{_libdir}/v lc/ipv4.so295 %{_libdir}/v lc/ipv6.so296 %{_libdir}/v lc/logger.so297 %{_libdir}/v lc/lpcm_adec.so298 %{_libdir}/v lc/memcpy.so299 %{_libdir}/v lc/mga.so300 %{_libdir}/v lc/mpeg_es.so301 %{_libdir}/v lc/mpeg_ps.so302 %{_libdir}/v lc/mpeg_ts.so303 %{_libdir}/v lc/null.so304 %{_libdir}/v lc/rc.so305 %{_libdir}/v lc/spudec.so306 %{_libdir}/v lc/udp.so307 %{_libdir}/v lc/vcd.so308 %{_libdir}/v lc/x11.so309 #%{_libdir}/v lc/xmga.so277 %dir %{_libdir}/videolan/vlc 278 %{_libdir}/videolan/vlc/ac3_spdif.so 279 %{_libdir}/videolan/vlc/avi.so 280 %{_libdir}/videolan/vlc/dsp.so 281 %{_libdir}/videolan/vlc/dummy.so 282 %{_libdir}/videolan/vlc/dvd.so 283 %{_libdir}/videolan/vlc/fb.so 284 %{_libdir}/videolan/vlc/file.so 285 %{_libdir}/videolan/vlc/filter_deinterlace.so 286 %{_libdir}/videolan/vlc/filter_distort.so 287 %{_libdir}/videolan/vlc/filter_invert.so 288 %{_libdir}/videolan/vlc/filter_transform.so 289 %{_libdir}/videolan/vlc/filter_wall.so 290 %{_libdir}/videolan/vlc/filter_clone.so 291 %{_libdir}/videolan/vlc/filter_crop.so 292 %{_libdir}/videolan/vlc/fx_scope.so 293 %{_libdir}/videolan/vlc/http.so 294 %{_libdir}/videolan/vlc/ipv4.so 295 %{_libdir}/videolan/vlc/ipv6.so 296 %{_libdir}/videolan/vlc/logger.so 297 %{_libdir}/videolan/vlc/lpcm_adec.so 298 %{_libdir}/videolan/vlc/memcpy.so 299 %{_libdir}/videolan/vlc/mga.so 300 %{_libdir}/videolan/vlc/mpeg_es.so 301 %{_libdir}/videolan/vlc/mpeg_ps.so 302 %{_libdir}/videolan/vlc/mpeg_ts.so 303 %{_libdir}/videolan/vlc/null.so 304 %{_libdir}/videolan/vlc/rc.so 305 %{_libdir}/videolan/vlc/spudec.so 306 %{_libdir}/videolan/vlc/udp.so 307 %{_libdir}/videolan/vlc/vcd.so 308 %{_libdir}/videolan/vlc/x11.so 309 #%{_libdir}/videolan/vlc/xmga.so 310 310 311 311 %{_mandir}/man1/* … … 320 320 %defattr(-,root,root) 321 321 %doc README 322 %{_libdir}/v lc/gtk.so322 %{_libdir}/videolan/vlc/gtk.so 323 323 %{_bindir}/gvlc 324 324 %{_menudir}/vlc-gtk … … 334 334 %defattr(-,root,root) 335 335 %doc README 336 %{_libdir}/v lc/gnome.so336 %{_libdir}/videolan/vlc/gnome.so 337 337 %{_bindir}/gnome-vlc 338 338 %{_menudir}/vlc-gnome … … 349 349 %defattr(-,root,root) 350 350 %doc README 351 %{_libdir}/v lc/qt.so351 %{_libdir}/videolan/vlc/qt.so 352 352 %{_bindir}/qvlc 353 353 %{_menudir}/vlc-qt … … 364 364 %defattr(-,root,root) 365 365 %doc README 366 %{_libdir}/v lc/ncurses.so366 %{_libdir}/videolan/vlc/ncurses.so 367 367 368 368 %if %plugin_lirc … … 370 370 %defattr(-,root,root) 371 371 %doc README 372 %{_libdir}/v lc/lirc.so372 %{_libdir}/videolan/vlc/lirc.so 373 373 %endif 374 374 … … 377 377 %defattr(-,root,root) 378 378 %doc README 379 %{_libdir}/v lc/sdl.so379 %{_libdir}/videolan/vlc/sdl.so 380 380 381 381 %files ggi 382 382 %defattr(-,root,root) 383 383 %doc README 384 %{_libdir}/v lc/ggi.so384 %{_libdir}/videolan/vlc/ggi.so 385 385 386 386 %files aa 387 387 %defattr(-,root,root) 388 388 %doc README 389 %{_libdir}/v lc/aa.so389 %{_libdir}/videolan/vlc/aa.so 390 390 391 391 # codec plugin … … 393 393 %defattr(-,root,root) 394 394 %doc README 395 %{_libdir}/v lc/mad.so395 %{_libdir}/videolan/vlc/mad.so 396 396 397 397 #audio plugins … … 399 399 %defattr(-,root,root) 400 400 %doc README 401 %{_libdir}/v lc/esd.so401 %{_libdir}/videolan/vlc/esd.so 402 402 403 403 %files arts 404 404 %defattr(-,root,root) 405 405 %doc README 406 %{_libdir}/v lc/arts.so406 %{_libdir}/videolan/vlc/arts.so 407 407 408 408 %files alsa 409 409 %defattr(-,root,root) 410 410 %doc README 411 %{_libdir}/v lc/alsa.so411 %{_libdir}/videolan/vlc/alsa.so 412 412 413 413 %changelog 414 * Mon Jun 20 2002 Yves Duret <yduret@mandrakesoft.com> 0.4.2-1mdk 415 - new upstream release 416 417 * Mon Jun 3 2002 Yves Duret <yduret@mandrakesoft.com> 0.4.1-1mdk 418 - new upstream release 419 414 420 * Thu May 23 2002 Yves Duret <yduret@mandrakesoft.com> 0.4.0-1mdk 415 421 - version 0.4.0 with MPEG4 (DivX) support thx ffmpeg.
