pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/multimedia/mkvtoolnix mkvtoolnix: updated to 20.0.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d7e249b45a43
branches:  trunk
changeset: 374262:d7e249b45a43
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Jan 18 17:14:41 2018 +0000

description:
mkvtoolnix: updated to 20.0.0

Version 20.0.0 "I Am The Sun":

Important notes

* Feature removal: several deprecated features have been removed:
  * mkvmerge: the deprecated options --identify-verbose (and its counterpart
    -I), --identify-for-gui, --identify-for-mmg and
    --identification-format verbose-text
  * all command line tools: support for the deprecated, old, proprietary format
    used for option files
  * all command line tools: support for passing command line options via the
    deprecated environment variables MKVTOOLNIX_OPTIONS, MKVEXTRACT_OPTIONS,
    MKVINFO_OPTIONS, MKVMERGE_OPTIONS and MKVPROPEDIT_OPTIONS

* mkvinfo: most of its code was re-written in order to lay the groundwork for
  including its functionality in MKVToolNix GUI but with more features than
  the existing mkvinfo GUI. The result is that a lot of its output has been
  changed slightly while keeping the basic layout. Changes include but aren't
  limited to:

  * Several element names are a bit clearer (e.g. Maximum cache instead of
    MaxCache).
  * All timestamps and durations are now output as nanoseconds in formatted
    form (e.g. 01:23:45.67890123). All additional formats (e.g. floating
    point numbers output in seconds or milliseconds) were removed.
  * Element names for chapters and tags are now translated if a translation is
    available.
  * Elements located in wrong positions within the Matroska document are
    handled better.

  While mkvinfo's output is mostly kept very stable, it is not designed to be
  parsed by other utilities. Even though I've tried hard to cram all changes
  and cleanups into this version, additional changes may be made in the next
  couple of releases depending on user feedback and bug reports.

New features and enhancements

* mkvmerge: AVC/h.264 packetizer (framed): access unit delimiter NALUs will
  now be removed.

Bug fixes

* mkvmerge: AVC/h.264 parser: when fixing the bitstream timing information
  mkvmerge will now use exact representations of the desired field duration if
  possible. For example, when indicating 50 fields/second num_units_in_tick
  is set to 1 and time_scale to 50 instead of 5368709 and 268435456.
* mkvmerge: AVC/h.264 parser: mkvmerge no longer assumes that encountering
  sequence parameter set or picture parameter set NALUs signal the start of a
  new frame.
* mkvmerge: AVC/h.264 packetizer (framed): when mkvmerge is told to fix the
  bitstream timing information, it will now update all SPS NALUs, not just the
  ones in the AVCC.
* mkvmerge: MPEG TS reader: TS packet payloads will only be treated as PES
  packets if the payload actually starts with a PES start code. The prior
  behavior led to wrong timestamps and potentially broken frame data.
* mkvmerge: MPEG TS reader: mkvmerge will now drop incomplete PES packets as
  soon as an error is detected in the transport stream instead of passing the
  incomplete frame to the packetizer. An error is assumed either if the
  transport_error_indicator flag is set or if the value of the
  continuity_counter header field doesn't match the expected value.
* mkvmerge: Opus: when re-muxing Opus from Matroska mkvmerge will now write
  "block duration" elements for all block groups where a "discard padding" is
  set, too.
* mkvmerge: SRT reader: mkvmerge can now handle SRT files with timestamps
  without decimal places (e.g. 00:01:15 instead of 00:01:15.000).
* mkvmerge: read buffer I/O class: the class could get out of sync regarding
  the file position of the underlying file I/O class causing wrong data to be
  returned on subsequent read operations. One result was that trying to
  identifying MPLS files that refer to very short M2TS files caused mkvmerge
  to segfault.
* mkvmerge: multiplexer core: if there's a gap in audio timestamps, a new
  block group/lace will be started for the first frame after each gap. Before
  the fix the frame after the gap was often stored in the previous block group
  causing the gap to be in the wrong place: at the end of that block
  group.
* mkvextract: AVC/h.264: if two consecutive IDR frames with the same
  idr_pic_id parameter and no access unit delimiters are found between them,
  mkvextract will insert an access unit delimiter in order to signal the start
  of a new access unit.
* MKVToolNix GUI: update check dialog: Markdown links will now be converted to
  clickable links.
* build system: fixed a race condition when creating new directories if rake
  is run with -jN in newer versions of Ruby/rake.

Build system changes
* [cmark](https://github.com/commonmark/cmark), the CommonMark parsing and
  rendering library in C, is now required when building the GUIs.

diffstat:

 multimedia/mkvtoolnix/Makefile |   6 +++---
 multimedia/mkvtoolnix/distinfo |  10 +++++-----
 2 files changed, 8 insertions(+), 8 deletions(-)

diffs (35 lines):

diff -r 750072948340 -r d7e249b45a43 multimedia/mkvtoolnix/Makefile
--- a/multimedia/mkvtoolnix/Makefile    Thu Jan 18 17:11:38 2018 +0000
+++ b/multimedia/mkvtoolnix/Makefile    Thu Jan 18 17:14:41 2018 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.99 2018/01/01 21:18:46 adam Exp $
+# $NetBSD: Makefile,v 1.100 2018/01/18 17:14:41 adam Exp $
 
-DISTNAME=      mkvtoolnix-18.0.0
-PKGREVISION=   1
+DISTNAME=      mkvtoolnix-20.0.0
 CATEGORIES=    multimedia
 MASTER_SITES=  https://mkvtoolnix.download/sources/
 EXTRACT_SUFX=  .tar.xz
@@ -65,5 +64,6 @@
 .include "../../multimedia/libmatroska/buildlink3.mk"
 .include "../../multimedia/libogg/buildlink3.mk"
 .include "../../sysutils/file/buildlink3.mk"
+.include "../../textproc/cmark/buildlink3.mk"
 .include "../../textproc/expat/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 750072948340 -r d7e249b45a43 multimedia/mkvtoolnix/distinfo
--- a/multimedia/mkvtoolnix/distinfo    Thu Jan 18 17:11:38 2018 +0000
+++ b/multimedia/mkvtoolnix/distinfo    Thu Jan 18 17:14:41 2018 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.44 2017/12/14 12:11:29 adam Exp $
+$NetBSD: distinfo,v 1.45 2018/01/18 17:14:41 adam Exp $
 
-SHA1 (mkvtoolnix-18.0.0.tar.xz) = 9d9fba0529cbe43dfaab3d7be24f2a8ce117097e
-RMD160 (mkvtoolnix-18.0.0.tar.xz) = e78d782b03a0ccd63e564220b357f7191ea6c999
-SHA512 (mkvtoolnix-18.0.0.tar.xz) = 3094bc4859a29bc35a9051989a327a50bcfc2a033386f9ece0dba23a5221037ae6aa318345ecae024ef7884fc3622b56bf3cbafbee9e2b116b74bb28c5d779f9
-Size (mkvtoolnix-18.0.0.tar.xz) = 4613492 bytes
+SHA1 (mkvtoolnix-20.0.0.tar.xz) = a1e6a2fa1bce5fffd4a059f606efc05dc3743820
+RMD160 (mkvtoolnix-20.0.0.tar.xz) = 935781a83549d1779b7852ce20a547ad40ebf6fb
+SHA512 (mkvtoolnix-20.0.0.tar.xz) = 1ba7b2d02fcaa2252409702e82e04075237a33b8f2cfe8b85e4ea416d7ad55d0454659c821eb851fa666b15acceec40a5be00691ddaa4ea098cd3a4d2db0d313
+Size (mkvtoolnix-20.0.0.tar.xz) = 4670268 bytes



Home | Main Index | Thread Index | Old Index