36f202a259
converter. HandBrake was originally available on the BeOS, but now has been ported over to MacOS X, GNU/Linux and FreeBSD. Features: * Can encode directly from DVDs (even encrypted ones) or from VIDEO_TS folders * Supports AC3, LPCM and MPEG audio tracks * Outputs MP4, AVI or OGM files * Outputs AAC, MP3 or Vorbis audio * Supports 2-pass encoding * Supports encoding of two audio tracks * Includes a bitrate calculator * Supports picture deinterlacing, cropping and scaling Known limitations: * Does not handle DTS audio tracks * Does not handle single VOB files or any other file format WWW: http://handbrake.m0k.org/ PR: 74214 Submitted by: Andrew Thompson Approved by: adamw (mentor)
12 lines
389 B
C
12 lines
389 B
C
diff -urN core/Utils.c core/Utils.c
|
|
--- core/Utils.c Wed May 26 05:51:32 2004
|
|
+++ core/Utils.c Fri Nov 19 08:08:07 2004
|
|
@@ -38,7 +38,7 @@
|
|
{
|
|
#if defined( HB_BEOS )
|
|
snooze( time );
|
|
-#elif defined( HB_MACOSX ) || defined( HB_LINUX )
|
|
+#elif defined( HB_MACOSX ) || defined( HB_LINUX ) || defined( HB_FREEBSD )
|
|
usleep( time );
|
|
#elif defined( HB_CYGWIN )
|
|
Sleep( time / 1000 );
|