www.delorie.com/archives/browse.cgi   search  
Mail Archives: djgpp-announce/2022/12/31/14:57:50

Message-Id: <202212311953.2BVJrpiR023220@delorie.com>
Date: Sat, 31 Dec 2022 17:54:12 +0100
From: "Juan Manuel Guerrero (juan DOT guerrero AT gmx DOT de) [via djgpp-announce AT delorie DOT com]" <djgpp-announce AT delorie DOT com>
To: djgpp-announce AT delorie DOT com
Subject: ANNOUNCE: DJGPP port of x264 0.164.3095_baee400 uploaded.
UI-OutboundReport: notjunk:1;M01:P0:kziip773CzI=;o9aYfpRAbfakP2yedQk4zbuv55j
GTSilsUmoNNhsXIOKvWLRx13qYi67hJEkF6yGi+FXQ4Xw2HO37k3zEElR1zS5RQDaKOfhNHPb
osEMDKii5J0nmcb6ARAxy281gcaiWxRcgQBxUTUMlq27D3WcMOsKEjwguYdPFDLP7xSlkR4wW
UVlXegeIf0ocDgbJvs8BREzdh8jVzUu1jJN7+lynP/1gc6RZeYD2g3qWNIEtfpbozL6GS9WOb
fYYscPP7VRU8gIou6c59wgZq14QKoq1OlyJpv0G3zc+Tbq3yOhgytC36BYQ8vN8WgcKd0V5iH
4FQCnmy7ohkAlQ4p51ElS9DvgsCvpAknb3g6y07xSDCjZ+LXf/WbXFrm3yxmI7o/wNQW3HAxO
YmHqRb3VT9YHE738yLKUSYmy+PaZ6wsz2AHZ6oa+PdOdgUznoWtsGU8tCCtns227zIUkMO/Uu
KY0x/DUseNtrPjyuZhUJ7cXvTbVfais2/Xwyz1bxt/MC/PO10RYbf8ZJC7dAM5O2wdx+n9Unq
mI90JNujRTJhZqN+Wk5fB259oGzDhZWquAaESLzPCzxyPtcOUz7DTjYRiZyRIvVkP5+GMViOT
Tt3AICxEWPOMBsoMfIb1xJOQIHOVjThdbLUgVw4WIGj1MuqtIsn2XCMj72LUeWi+zKOHVmXO4
4cmPqntSphIGmUNS9pkUW2wyD2TdSBwhgTEQt83tDoVByx4plBvAokOq8Jey2ZhFDKZ//915A
1BJryP4o45lyuzHSvARP+jB8kiNS9PgwrHtiwCRb870pUIIpDJNZyuheZyUBQ83i+mEbec1Hw
9OVmqPBMqG7Sps3CkYB4W6Dmy/8kt0j/VdFFmXeWUnIKiUxM+xaiujyxMuNRUxOiKC3UKi9e0
D+8emnUfuRJkr/VRdK+SY0LvH1HuzM7YLqi3PGx0L0Wvdfwz2YVAJaDYFLSwny+yu7QRByYpI
rir1fJJ6VCCeSJPWDaG5ScHxa2A=
Reply-To: djgpp AT delorie DOT com

This is a port of x264 0.164.3095_baee400 to MSDOS/DJGPP.


x264 is a free software library and application for encoding video streams
into the H.264/MPEG-4 AVC compression format, and is released under the
terms of the GNU GPL.

Features Overview:
   * Provides best-in-class performance, compression, and features.
   * Achieves dramatic performance, encoding 4 or more 1080p streams
     in realtime on a single consumer-level computer.
   * Gives the best quality, having the most advanced psychovisual
     optimizations.
   * Support features necessary for many different applications,
     such as television broadcast, Blu-ray low-latency video
     applications, and web video.
   * x264 forms the core of many web video services, such as Youtube,
     Facebook, Vimeo, and Hulu. It is widely used by television
     broadcasters and ISPs.



  DJGPP specific changes.
  =======================

  - The source code for this port has been retrieved from www.videolan.org
    by cloning the master branch of the git repository like this:
      git clone https://code.videolan.org/videolan/x264.git
    The version string used internally by this port is generated by version.sh
    located in the root directory.  It produces the following string:
      0.164.3095_baee400
    and is useless to produce a meaningfull version number for the DJGPP port,
    thus the version number is 1 (one) and will be increased with every new
    port release, although I think that there will be no second one.

  - A DJGPP specific rule has been added to the configure script, for details
    see the patch.

  - The reading/writing stream is switched into O_BINARY mode.  If the
    stream is connected to stdin/stdout/TTY, then Ctrl-C and Ctrl-Break
    are re-enabled so the user can interrupt the program.

  - The code does not provide documentation in a usefull format, thus
    the man page created by the debian port has been added.

  - x264 can be tested by compiling and runing the three programs example,
    checkasm8, checkasm10.

  - There are no user visible changes.  Only small changes have been done
    to get the library compiled.

  - To configure and compile this port at least the following version of
    Bash and Make are required:
      http://ftp.delorie.com/pub/djgpp/current/v2gnu/bsh4253b.zip
      http://ftp.delorie.com/pub/djgpp/current/v2gnu/mak43br2.zip
    No previous versions will work nor are supported.  Any future version
    should work.

  - The port has been configured and compiled on WinXP SP3, Win98SE and
    MSDOS 6.22 with DOSLFN v0.41f.  There is no guarantee that this may
    be possible with any other DOS-like OS.  Due to the use of long file
    names it will not be possible to configure and compile without LFN
    support.  The port has been compiled using gcc346 and bnu2351b.

  As usual, all djgpp specific files (diffs, README files, etc.) are stored
  in the "djgpp" directory.  The sources have been configured to be build
  in the "0build" directory.  If for some reason it does not work for you,
  delete its contents and configure from scratch again.

  Please read the docs to become familiar with this product.


  Here is an extract of the CHANGES file showing the user visible changes
  from the last port (x264 0.0.0) to this one:

-------------------------------------------------------------------------------

This is the first port.  Read the documentation.


-------------------------------------------------------------------------------




  The port consists of the usual two packages that have been produced using
  djdev20X (CVS repository code) and can be downloaded from ftp.delorie.com
  and mirrors as (time stamp 2022-10-20):


    x264 0.164.3095_baee400 headers, library and man format documentation:
    http://ftp.delorie.com/pub/djgpp/current/v2tk/x264-1b.zip

    x264 0.164.3095_baee400 source:
    http://ftp.delorie.com/pub/djgpp/current/v2tk/x264-1s.zip



  Send x264 specific bug reports to
  <https://code.videolan.org/videolan/x264/-/issues>.
  Send suggestions and bug reports concerning the DJGPP port
  to comp.os.msdos.djgpp or <djgpp AT delorie DOT com>.


Enjoy.

    Guerrero, Juan Manuel <juan DOT guerrero AT gmx DOT de>

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019