File x265.changes of Package x265 (Revision 40)

Currently displaying revision 40 , Show latest

885
 
1
-------------------------------------------------------------------
2
Fri Mar 26 12:02:14 UTC 2021 - Luigi Baldoni <aloisio@gmx.com>
3
4
- Update to version 3.5
5
  New features:
6
  * Real-time VBV for ABR (Average BitRate) encodes in –pass 2
7
    using --vbv-live-multi-pass. Improves VBV compliance with no
8
    significant impact on coding efficiency.
9
  Enhancements to existing features:
10
  * Improved hist-based scene cut algorithm: Reduces false
11
    positives by leveraging motion and scene transition info.
12
  * Support for RADL pictures at IDR scene cuts: Improves coding
13
    efficiency with no significant impact on performance.
14
  * Bidirectional scene cut aware Frame Quantizer Selection:
15
    Saves bits than forward masking with no noticeable perceptual
16
    quality difference.
17
  API changes:
18
  * Additions to x265_param structure to support the newly added
19
    features and encoder enhancements.
20
  * New x265_param options --min-vbv-fullness and
21
    --max-vbv-fullness to control min and max VBV fullness.
22
  Bug fixes:
23
  * Incorrect VBV lookahead in --analysis-load + --scale-factor.
24
  * Encoder hang when VBV is used with slices.
25
  * QP spikes in the row-level VBV rate-control when WPP enabled.
26
  * Encoder crash in --abr-ladder.
27
- Use new homepage and download URLs.
28
- Add subpackage for HDR10+ library
29
- Add update.sh
30
31
-------------------------------------------------------------------
32
Mon Jun  1 17:51:22 UTC 2020 - Luigi Baldoni <aloisio@gmx.com>
33
34
- Update to version 3.4
35
  New features:
36
  * Edge-aware quadtree partitioning to terminate CU depth
37
    recursion based on edge information. --rskip level 2 enables
38
    the feature and --rskip-edge-threshold denotes the minimum
39
    expected edge-density percentage within the CU, below which
40
    the recursion is skipped. Experimental feature.
41
  * Application-level feature --abr-ladder for automating
42
    efficient ABR ladder generation. Shows ~65% savings in the
43
    over-all turn-around time required for the generation of a
44
    typical Apple HLS ladder in Intel(R) Xeon(R) Platinum 8280
45
    CPU @ 2.70GHz over a sequential ABR-ladder generation
46
    approach that leverages save-load architecture.
47
  Enhancements to existing features:
48
  * Improved efficiency in 2-pass rate-control algorithm. The
49
    savings in the bitrate is ~1.72% with visual improvement in
50
    quality in the initial 1-2 secs.
51
  Encoder enhancements:
52
  * Faster ARM64 encodes enabled by ASM contributions from
53
    Huawei. The speed-up over no-asm version for 1080p encodes @
54
    medium preset is ~15% in a 16 core H/W.
55
  * Strict VBV conformance in zone encoding.
56
  Bug fixes:
57
  * Multi-pass encode failures with --frame-dup.
58
  * Corrupted bitstreams with --hist-scenecut when input depth
59
    and internal bit-depth differ.
60
  * Incorrect analysis propagation in multi-level save-load
61
    architecture.
62
  * Failure in detecting NUMA packages installed in non-standard
63
    directories.
64
65
- Refreshed arm.patch
66
67
-------------------------------------------------------------------
68
Sat Mar 28 14:28:56 UTC 2020 - Luigi Baldoni <aloisio@gmx.com>
69
70
- Update to version 3.3
71
  New features:
72
  * Adaptive frame duplication** to identify and skip encoding
73
    of near-identical frames and signal the duplication info to the
74
    decoder via pic_struct SEI. :option:`frame-dup` to enable frame
75
    duplication and :option:`--dup-threshold` to set the threshold
76
    for frame similarity (optional).
77
  * Boundary aware quantization** to cut off bits from frames
78
    following scene-cut. This leverages the inability of HVS to
79
    perceive fine details during scene changes and saves bits.
80
    :option:`--scenecut-aware-qp` , :option:`--scenecut-window` and
81
    :option:`--max-qp-delta` to enable boundary aware frame
82
    quantization, to set window size (optional) and to set QP offset
83
    (optional).
84
  * Improved scene-cut detection** using edge and chroma
85
    histograms. :option:`--hist-scenecut` to enable the feature and
86
    :option:`--hist-threshold` (optional) to provide threshold for
87
    determining scene cuts.
88
  Enhancements to existing features:
89
  * :option:`--hme-range` to modify search range for HME levels
90
    L0, L1, and L2.
91
  * Improved performance of AQ mode 4 by reducing memory foot
92
    print.
93
  * Introduced :option:`--analysis-save-reuse-level` and
94
    :option:`--analysis-load-reuse-level` to de-couple reuse levels
95
    of :option:`--analysis-save` and :option:`--analysis-load`.
96
    Turnaround time of ABR encoding can be reduced by properly
97
    leveraging these options.
98
  Encoder enhancements:
99
  * Improved VBV lookahead to eliminate blocky artifacts in
100
    Intra frames coming towards end of the title.
101
  API changes:
102
  * New API function **x265_encoder_reconfig_zone()** to invoke
103
    zone reconfiguration dynamically.  
104
  * Renamed :option:`--hdr` to :option:`--hdr10`.
105
    :option:`--hdr` will be deprecated in the upcoming major
106
    release. 
107
  * Renamed :option:`--hdr-opt` to :option:`--hdr10-opt`.
108
    :option:`--hdr-opt` will be deprecated in the upcoming major
109
    release.
110
  * Additions to **x265_param** structure to support the newly
111
    added features and encoder enhancements.
112
  Bug fixes:
113
  * Output change in :option:`--analysis-load` at inter-refine
114
    levels 2 and 3.
115
  * Encoder crash with zones.
116
  * Integration issues with SVT v1.4.1.
117
  * Fixed bug in :option:`--limit-tu` 3 and 4 while loading
118
    co-located CU's TU depth.
119
120
-------------------------------------------------------------------
121
Sun Dec  1 10:44:50 UTC 2019 - Luigi Baldoni <aloisio@gmx.com>
122
123
- Update to version 3.2.1
124
  * Fix output change in analysis load
125
  * Fix encoder crash with zones and add test for zones
126
  * Fix: Performance drop in aq-mode 4 This patch moves the
127
    memory handling part of the edge information required for
128
    aq-mode 4 to the Frame class-level in that way it can be
129
    reused by the threads.
130
  * Fix: Performance drop in aq-mode 4 This patch moves the
131
    memory handling part of the edge information required for
132
    aq-mode 4 to the Frame class-level in that way it can be
133
    reused by the threads.
134
  * Fix output change observed during analysis-load for
135
    inter-refine levels 2 and 3.
136
  * Adaptive Frame duplication This patch does the following. 1.
137
    Replaces 2-3 near-identical frames with one frame and sets
138
    pic_struct based on frame doubling / tripling. 2. Add option
139
    "--frame-dup" and "--dup-threshold' to enable frame
140
    duplication and to set threshold for frame similarity
141
    (optional).
142
  * Fix: AQ mode 4 commit (21db162) introduces slowdown even is
143
    not used AQ mode 4.
144
145
-------------------------------------------------------------------
146
Tue Oct 01 12:21:19 UTC 2019 - enzokiel@kabelmail.de
147
148
- Update to version 3.2
149
  New features
150
  * 3-level hierarchical motion estimation using --hme and
151
    --hme-search.
152
  * New AQ mode (--aq-mode 4) with variance and edge information.
153
  * selective-sao to selectively enable SAO at slice level.
154
  Enhancements to existing features
155
  * New implementation of --refine-mv with 3 refinement levels.
156
  Encoder enhancements
157
  * Improved quality in the frames following dark scenes in ABR
158
    mode.
159
  API changes
160
  * Additions to x265_param structure to support the newly added
161
    features --hme, --hme-search and selective-sao.
162
  Bug fixes
163
  * Fixed encoder crash with --zonefile during failures in
164
    encoder_open().
165
  * Fixed JSON11 build errors with HDR10+ on MacOS high sierra.
166
  * Signalling out of range scaling list data fixed.
167
  * Inconsistent output fix for 2-pass rate-control with cutree ON.
168
  Known issues
169
  * Build dependency on changeset cf37911 of SVT-HEVC.
170
171
-------------------------------------------------------------------
172
Sun Aug 11 09:32:37 UTC 2019 - Luigi Baldoni <aloisio@gmx.com>
173
174
- Update to version 3.1.2
175
  * No changelog available
176
177
- Spec cleanup
178
179
-------------------------------------------------------------------
180
Thu Jul 18 13:17:22 UTC 2019 - enzokiel@kabelmail.de
181
182
- Update to version 3.1.1
183
  - No changelog available.
184
185
- Version 3.1
186
  New features
187
  * x265 can invoke SVT-HEVC library for encoding through --svt.
188
  * x265 can now accept interlaced inputs directly (no need to
189
    separate fields), and sends it to the encoder with proper fps
190
    and frame-size through --field.
191
  * --fades can detect and handle fade-in regions. This option will
192
    force I-slice and initialize RC history for the brightest frame
193
    after fade-in.
194
  API changes
195
  * A new flag to signal MasterDisplayParams and maxCll/Fall
196
    separately
197
  Encoder enhancements
198
  * Improved the performance of inter-refine level 1 by skipping
199
    the evaluation of smaller CUs when the current block is decided
200
    as “skip” by the save mode.
201
  * New AVX2 primitives to improve the performance of encodes that
202
    enable --ssim-rd.
203
  * Improved performance in medium preset with negligible loss in
204
  quality.
205
  Bug fixes
206
  * Bug fixes for zones.
207
  * Fixed wrap-around from MV structure overflow occurred around 8K
208
  pixels or over.
209
  * Fixed issues in configuring cbQpOffset and crQpOffset for 444
210
    input
211
  * Fixed cutree offset computation in 2nd pass encodes.
212
  Known issues
213
  * AVX512 main12 asm disabling.
214
  * Inconsistent output with 2-pass due to cutree offset sharing.
215
216
-------------------------------------------------------------------
217
Fri Feb  1 00:32:50 UTC 2019 - antonio.larrosa@gmail.com
218
219
- Support 10 and 12 bit color depths
220
221
- Update to version 3.0
222
  New features
223
  * option:: '--dolby-vision-profile <integer|float>' generates
224
    bitstreams confirming to the specified Dolby Vision profile.
225
    Currently profile 5, profile 8.1 and profile 8.2 enabled,
226
    Default 0 (disabled)
227
  * option:: '--dolby-vision-rpu' File containing Dolby Vision RPU
228
    metadata. If given, x265's Dolby Vision metadata parser will
229
    fill the RPU field of input pictures with the metadata read
230
    from the file. The library will interleave access units with
231
    RPUs in the bitstream. Default NULL (disabled).
232
  * option:: '--zonefile <filename>' specifies a text file which
233
    contains the boundaries of the zones where each of zones are
234
    configurable.
235
  * option:: '--qp-adaptation-range' Delta-QP range by QP
236
    adaptation based on a psycho-visual model. Default 1.0.
237
  * option:: '--refine-ctu-distortion <0/1>' store/normalize ctu
238
    distortion in analysis-save/load. Default 0.
239
  * Experimental feature option:: '--hevc-aq' enables adaptive
240
    quantization. It scales the quantization step size according
241
    to the spatial activity of one coding unit relative to frame
242
    average spatial activity. This AQ method utilizes the minimum
243
    variance of sub-unit in each coding unit to represent the
244
    coding unit's spatial complexity.
245
  Encoder enhancements
246
  * Preset: change param defaults for veryslow and slower preset.
247
    Replace slower preset with defaults used in veryslow preset
248
    and change param defaults in veryslow preset as per
249
    experimental results.
250
  * AQ: change default AQ mode to auto-variance
251
  * Cutree offset reuse: restricted to analysis reuse-level 10 for
252
    analysis-save -> analysis-load
253
  * Tune: introduce --tune animation option which improves encode
254
    quality for animated content
255
  * Reuse CU depth for B frame and allow I, P frame to follow
256
    x265 depth decision
257
  Bug fixes
258
  * RC: fix rowStat computation in const-vbv
259
  * Dynamic-refine: fix memory reset size.
260
  * Fix linking issue on non x86 platform
261
  * Encoder: Do not include CLL SEI message if empty
262
  * Fix build error in VMAF lib
263
- Rebase x265-fix_enable512.patch
264
265
-------------------------------------------------------------------
266
Tue Oct  9 20:03:53 UTC 2018 - aloisio@gmx.com
267
268
- Update to version 2.9
269
  New features:
270
  * Support for chunked encoding
271
    + :option:`--chunk-start and --chunk-end`
272
    + Frames preceding first frame of chunk in display order
273
      will be encoded, however, they will be discarded in the
274
      bitstream.
275
    + Frames following last frame of the chunk in display order
276
      will be used in taking lookahead decisions, but, they will
277
      not be encoded.
278
    + This feature can be enabled only in closed GOP structures.
279
      Default disabled.
280
  * Support for HDR10+ version 1 SEI messages.
281
  Encoder enhancements:
282
  * Create API function for allocating and freeing
283
    x265_analysis_data.
284
  * CEA 608/708 support: Read SEI messages from text file and
285
    encode it using userSEI message.
286
  Bug fixes:
287
  * Disable noise reduction when vbv is enabled.
288
  * Support minLuma and maxLuma values changed by the
289
    commandline.
290
  version 2.8
291
  New features:
292
  * :option:`--asm avx512` used to enable AVX-512 in x265.
293
    Default disabled.   
294
    + For 4K main10 high-quality encoding, we are seeing good
295
      gains; for other resolutions and presets, we don't
296
      recommend using this setting for now.
297
  * :option:`--dynamic-refine` dynamically switches between
298
    different inter refine levels. Default disabled.
299
    + It is recommended to use :option:`--refine-intra 4' with
300
      dynamic refinement for a better trade-off between encode
301
      efficiency and performance than using static refinement.
302
  * :option:`--single-sei`
303
    + Encode SEI messages in a single NAL unit instead of
304
      multiple NAL units. Default disabled.
305
  * :option:`--max-ausize-factor` controls the maximum AU size
306
    defined in HEVC specification.
307
    + It represents the percentage of maximum AU size used.
308
      Default is 1.
309
  * VMAF (Video Multi-Method Assessment Fusion)
310
    + Added VMAF support for objective quality measurement of a
311
      video sequence.
312
    + Enable cmake option ENABLE_LIBVMAF to report per frame and
313
      aggregate VMAF score. The frame level VMAF score does not
314
      include temporal scores.
315
    + This is supported only on linux for now.
316
  Encoder enhancements:
317
  * Introduced refine-intra level 4 to improve quality.
318
  * Support for HLG-graded content and pic_struct in SEI message.
319
  Bug Fixes:
320
  * Fix 32 bit build error (using CMAKE GUI) in Linux.
321
  * Fix 32 bit build error for asm primitives.
322
  * Fix build error on mac OS.
323
  * Fix VBV Lookahead in analysis load to achieve target bitrate.
324
325
- Added x265-fix_enable512.patch
326
327
-------------------------------------------------------------------
328
Fri May  4 22:21:57 UTC 2018 - zaitor@opensuse.org
329
330
- Build with nasm >= 2.13 for openSUSE Leap 42.3 and SLE-12, since
331
  new enough nasm is now available for them.
332
333
-------------------------------------------------------------------
334
Thu Mar  1 23:14:47 UTC 2018 - zaitor@opensuse.org
335
336
- Update to version 2.7:
337
  * New features:
338
    - option:`--gop-lookahead` can be used to extend the gop
339
      boundary(set by `--keyint`). The GOP will be extended, if a
340
      scene-cut frame is found within this many number of frames.
341
    - Support for RADL pictures added in x265.
342
    - option:`--radl` can be used to decide number of RADL pictures
343
      preceding the IDR picture.
344
  * Encoder enhancements:
345
    - Moved from YASM to NASM assembler. Supports NASM assembler
346
      version 2.13 and greater.
347
    - Enable analysis save and load in a single run. Introduces two
348
      new cli options `--analysis-save <filename>` and
349
      `--analysis-load <filename>`.
350
    - Comply to HDR10+ LLC specification.
351
    - Reduced x265 build time by more than 50% by re-factoring
352
      ipfilter.asm.
353
  * Bug fixes:
354
    - Fixed inconsistent output issue in deblock filter and
355
      --const-vbv.
356
    - Fixed Mac OS build warnings.
357
    - Fixed inconsistency in pass-2 when weightp and cutree are
358
      enabled.
359
    - Fixed deadlock issue due to dropping of BREF frames, while
360
      forcing slice types through qp file.
361
- Bump soname to 151, also in baselibs.conf following upstream
362
  changes.
363
- Replace yasm with nasm BuildRequires following upstreams changes.
364
365
-------------------------------------------------------------------
366
Fri Dec 01 16:40:13 UTC 2017 - joerg.lorenzen@ki.tng.de
367
368
- Update to version 2.6
369
  New features
370
  * x265 can now refine analysis from a previous HEVC encode (using
371
    options --refine-inter, and --refine-intra), or a previous AVC
372
    encode (using option --refine-mv-type). The previous encode’s
373
    information can be packaged using the x265_analysis_data_t data
374
    field available in the x265_picture object.
375
  * Basic support for segmented (or chunked) encoding added with
376
    --vbv-end that can specify the status of CPB at the end of a
377
    segment. String this together with --vbv-init to encode a title
378
    as chunks while maintaining VBV compliance!
379
  * --force-flush can be used to trigger a premature flush of the
380
    encoder. This option is beneficial when input is known to be
381
    bursty, and may be at a rate slower than the encoder.
382
  * Experimental feature --lowpass-dct that uses truncated DCT for
383
    transformation.
384
  Encoder enhancements
385
  * Slice-parallel mode gets a significant boost in performance,
386
    particularly in low-latency mode.
387
  * x265 now officially supported on VS2017.
388
  * x265 now supports all depths from mono0 to mono16 for Y4M
389
    format.
390
  API changes
391
  * Options that modified PPS dynamically (--opt-qp-pps and
392
    --opt-ref-list-length-pps) are now disabled by default to
393
    enable users to save bits by not sending headers. If these
394
    options are enabled, headers have to be repeated for every GOP.
395
  * Rate-control and analysis parameters can dynamically be
396
    reconfigured simultaneously via the x265_encoder_reconfig API.
397
  * New API functions to extract intermediate information such as
398
    slice-type, scenecut information, reference frames, etc. are
399
    now available. This information may be beneficial to
400
    integrating applications that are attempting to perform
401
    content-adaptive encoding. Refer to documentation on
402
    x265_get_slicetype_poc_and_scenecut, and
403
    x265_get_ref_frame_list for more details and suggested usage.
404
  * A new API to pass supplemental CTU information to x265 to
405
    influence analysis decisions has been added. Refer to
406
    documentation on x265_encoder_ctu_info for more details.
407
  Bug fixes
408
  * Bug fixes when --slices is used with VBV settings.
409
  * Minor memory leak fixed for HDR10+ builds, and default x265
410
    when pools option is specified.
411
  * HDR10+ bug fix to remove dependence on poc counter to select
412
    meta-data information.
413
414
-------------------------------------------------------------------
415
Thu Jul 27 08:33:52 UTC 2017 - joerg.lorenzen@ki.tng.de
416
417
- Update to version 2.5
418
  Encoder enhancements
419
  * Improved grain handling with --tune grain option by throttling
420
    VBV operations to limit QP jumps.
421
  * Frame threads are now decided based on number of threads
422
    specified in the --pools, as opposed to the number of hardware
423
    threads available. The mapping was also adjusted to improve
424
    quality of the encodes with minimal impact to performance.
425
  * CSV logging feature (enabled by --csv) is now part of the
426
    library; it was previously part of the x265 application.
427
    Applications that integrate libx265 can now extract frame level
428
    statistics for their encodes by exercising this option in the
429
    library.
430
  * Globals that track min and max CU sizes, number of slices, and
431
    other parameters have now been moved into instance-specific
432
    variables. Consequently, applications that invoke multiple
433
    instances of x265 library are no longer restricted to use the
434
    same settings for these parameter options across the multiple
435
    instances.
436
  * x265 can now generate a seprate library that exports the HDR10+
437
    parsing API. Other libraries that wish to use this API may do
438
    so by linking against this library. Enable ENABLE_HDR10_PLUS in
439
    CMake options and build to generate this library.
440
  * SEA motion search receives a 10% performance boost from AVX2
441
    optimization of its kernels.
442
  * The CSV log is now more elaborate with additional fields such
443
    as PU statistics, average-min-max luma and chroma values, etc.
444
    Refer to documentation of --csv for details of all fields.
445
  * x86inc.asm cleaned-up for improved instruction handling.
446
  API changes
447
  * New API x265_encoder_ctu_info() introduced to specify suggested
448
    partition sizes for various CTUs in a frame. To be used in
449
    conjunction with --ctu-info to react to the specified
450
    partitions appropriately.
451
  * Rate-control statistics passed through the x265_picture object
452
    for an incoming frame are now used by the encoder.
453
  * Options to scale, reuse, and refine analysis for incoming
454
    analysis shared through the x265_analysis_data field in
455
    x265_picture for runs that use --analysis-reuse-mode load; use
456
    options --scale, --refine-mv, --refine-inter, and
457
    --refine-intra to explore.
458
  * VBV now has a deterministic mode. Use --const-vbv to exercise.
459
  Bug fixes
460
  * Several fixes for HDR10+ parsing code including incompatibility
461
    with user-specific SEI, removal of warnings, linking issues in
462
    linux, etc.
463
  * SEI messages for HDR10 repeated every keyint when HDR options
464
    (--hdr-opt, --master-display) specified.
465
- soname bump to 130.
466
467
-------------------------------------------------------------------
468
Thu Apr 27 14:15:13 UTC 2017 - joerg.lorenzen@ki.tng.de
469
470
- Update to version 2.4
471
  Encoder enhancements
472
  * HDR10+ supported. Dynamic metadata may be either supplied as a
473
    bitstream via the userSEI field of x265_picture, or as a json
474
    jile that can be parsed by x265 and inserted into the bitstream;
475
    use --dhdr10-info to specify json file name, and --dhdr10-opt
476
    to enable optimization of inserting tone-map information only
477
    at IDR frames, or when the tone map information changes.
478
  * Lambda tables for 8, 10, and 12-bit encoding revised, resulting
479
    in significant enhancement to subjective visual quality.
480
  * Enhanced HDR10 encoding with HDR-specific QP optimzations for
481
    chroma, and luma planes of WCG content enabled; use --hdr-opt
482
    to activate.
483
  * Ability to accept analysis information from other previous
484
    encodes (that may or may not be x265), and selectively reuse
485
    and refine analysis for encoding subsequent passes enabled with
486
    the --refine-level option.
487
  * Slow and veryslow presets receive a 20% speed boost at
488
    iso-quality by enabling the --limit-tu option.
489
  * The bitrate target for x265 can now be dynamically reconfigured
490
    via the reconfigure API.
491
  * Performance optimized SAO algorithm introduced via the
492
    --limit-sao option; seeing 10% speed benefits at faster presets.
493
  API changes
494
  * x265_reconfigure API now also accepts rate-control parameters
495
    for dynamic reconfiguration.
496
  * Several additions to data fields in x265_analysis to support
497
    --refine-level: see x265.h for more details.
498
  Bug fixes
499
  * Avoid negative offsets in x265 lambda2 table with SAO enabled.
500
  * Fix mingw32 build error.
501
  * Seek now enabled for pipe input, in addition to file-based input.
502
  * Fix issue of statically linking core-utils not working in linux.
503
  * Fix visual artifacts with --multi-pass-opt-distortion with VBV.
504
  * Fix bufferFill stats reported in csv.
505
- soname bump to 116.
506
507
-------------------------------------------------------------------
508
Fri Feb 24 14:03:24 UTC 2017 - ismail@i10z.com
509
510
- Update to version 2.3
511
  Encoder enhancements
512
  * New SSIM-based RD-cost computation for improved visual quality,
513
    and efficiency; use --ssim-rd to exercise.
514
  * Multi-pass encoding can now share analysis information from
515
    prior passes.
516
  * A dedicated thread pool for lookahead can now be specified
517
    with --lookahead-threads.
518
  * option:–dynamic-rd dynamically increase analysis in areas
519
    where the bitrate is being capped by VBV; works for both
520
    CRF and ABR encodes with VBV settings.
521
  * The number of bits used to signal the delta-QP can be
522
    optimized with the --opt-cu-delta-qp option.
523
  * Experimental feature option:–aq-motion adds new QP offsets
524
    based on relative motion of a block with respect to the
525
    movement of the frame.
526
  API changes
527
  * Reconfigure API now supports signalling new scaling lists.
528
  * x265 application’s csv functionality now reports time
529
    (in milliseconds) taken to encode each frame.
530
  * --strict-cbr enables stricter bitrate adherence by adding
531
    filler bits when achieved bitrate is lower than the target.
532
  * --hdr can be used to ensure that max-cll and max-fall values
533
    are always signaled (even if 0,0).
534
  Bug fixes
535
  * Fixed scaling lists support for 4:4:4 videos.
536
  * Inconsistent output fix for --opt-qp-pss by removing last
537
    slice’s QP from cost calculation.
538
539
-------------------------------------------------------------------
540
Sun Jan  1 20:32:07 UTC 2017 - ismail@i10z.com
541
542
-  Update to version 2.2
543
   Encoder enhancements
544
   * Enhancements to TU selection algorithm with early-outs for
545
     improved speed; use --limit-tu to exercise.
546
   * New motion search method SEA (Successive Elimination Algorithm)
547
     supported now as :option: –me 4
548
   * Bit-stream optimizations to improve fields in PPS and SPS for
549
     bit-rate savings through --[no-]opt-qp-pps, 
550
     --[no-]opt-ref-list-length-pps, and --[no-]multi-pass-opt-rps.
551
   * Enabled using VBV constraints when encoding without WPP.
552
   * All param options dumped in SEI packet in bitstream when info
553
     selected.
554
   API changes
555
   * Options to disable SEI and optional-VUI messages from bitstream
556
     made more descriptive.
557
   * New option --scenecut-bias to enable controlling bias to mark
558
     scene-cuts via cli.
559
   * Support mono and mono16 color spaces for y4m input.
560
   * --min-cu-size of 64 no-longer supported for reasons of
561
     visual quality.
562
   * API for CSV now expects version string for better integration
563
     of x265 into other applications.
564
   Bug fixes
565
   * Several fixes to slice-based encoding.
566
   * --log2-max-poc-lsb‘s range limited according to HEVC spec.
567
   * Restrict MVs to within legal boundaries when encoding.
568
569
-------------------------------------------------------------------
570
Thu Dec 22 12:59:47 UTC 2016 - scarabeus@opensuse.org
571
572
- Add conditional for the numa-devel again it was not ment to be dropped
573
- Add patch x265.pkgconfig.patch to fix pkgconfig
574
575
-------------------------------------------------------------------
576
Tue Dec 20 12:02:33 UTC 2016 - scarabeus@opensuse.org
577
578
- Switch to use cmake macros
579
580
-------------------------------------------------------------------
581
Thu Sep 29 12:26:59 UTC 2016 - ismail@i10z.com
582
583
- Update to version 2.1
584
  Encoder enhancements
585
  * Support for qg-size of 8
586
  * Support for inserting non-IDR I-frames at scenecuts and when
587
    running with settings for fixed-GOP (min-keyint = max-keyint)
588
  * Experimental support for slice-parallelism.
589
  API changes
590
  * Encode user-define SEI messages passed in through x265_picture
591
    object.
592
  * Disable SEI and VUI messages from the bitstream
593
  * Specify qpmin and qpmax
594
  * Control number of bits to encode POC.
595
  Bug fixes
596
  * QP fluctuation fix for first B-frame in mini-GOP for 2-pass
597
    encoding with tune-grain.
598
  * Assembly fix for crashes in 32-bit from dct_sse4.
599
  * Threadpool creation fix in windows platform.
600
601
-------------------------------------------------------------------
602
Sun Aug 28 11:51:23 UTC 2016 - joerg.lorenzen@ki.tng.de
603
604
- Update to version 2.0
605
  API and Key Behavior Changes
606
  * x265_rc_stats added to x265_picture, containing all RC decision
607
    points for that frame.
608
  * PTL: high tier is now allowed by default, chosen only if
609
    necessary.
610
  * multi-pass: First pass now uses slow-firstpass by default,
611
    enabling better RC decisions in future passes.
612
  * pools: fix behaviour on multi-socketed Windows systems, provide
613
    more flexibility in determining thread and pool counts.
614
  * ABR: improve bits allocation in the first few frames, abr reset,
615
    vbv and cutree improved.
616
  New Features
617
  * uhd-bd: Enforce Ultra-HD Blu-ray Disc parameters
618
    (overrides any other settings).
619
  * rskip: Enables skipping recursion to analyze lower CU sizes
620
    using heuristics at different rd-levels. Provides good visual
621
    quality gains at the highest quality presets.
622
  * rc-grain: Enables a new rate control mode specifically for
623
    grainy content. Strictly prevents QP oscillations within and
624
    between frames to avoid grain fluctuations.
625
  * tune grain: A fully refactored and improved option to encode
626
    film grain content including QP control as well as analysis
627
    options.
628
  * asm: ARM assembly is now enabled by default, native or cross
629
    compiled builds supported on armv6 and later systems.
630
  Misc
631
  * An SSIM calculation bug was corrected
632
- soname bump to 87.
633
- Fixed arm.patch.
634
- Added libnuma-devel as buildrequires for arch x86_64 (except
635
  for openSUSE 13.1 because libnuma-devel >= 2.0.9 is required).
636
637
-------------------------------------------------------------------
638
Wed Feb  3 13:22:42 UTC 2016 - ismail@i10z.com
639
640
- Update to version 1.9
641
  API Changes:
642
  * x265_frame_stats returns many additional fields: maxCLL, maxFALL,
643
    residual energy, scenecut and latency logging
644
  * --qpfile now supports frametype 'K"
645
  * x265 now allows CRF ratecontrol in pass N (N greater than or equal to 2)
646
  * Chroma subsampling format YUV 4:0:0 is now fully supported and tested
647
  New Features:
648
  * Quant offsets: This feature allows block level quantization offsets
649
    to be specified for every frame. An API-only feature.
650
  * --intra-refresh: Keyframes can be replaced by a moving column
651
    of intra blocks in non-keyframes.
652
  * --limit-modes: Intelligently restricts mode analysis.
653
  * --max-luma and --min-luma for luma clipping, optional for HDR use-cases
654
  * Emergency denoising is now enabled by default in very low bitrate, 
655
    VBV encodes
656
  Presets and Performance:
657
  * Recently added features lookahead-slices, limit-modes, limit-refs
658
    have been enabled by default for applicable presets.
659
  * The default psy-rd strength has been increased to 2.0
660
  * Multi-socket machines now use a single pool of threads that can
661
    work cross-socket.
662
663
-------------------------------------------------------------------
664
Fri Nov 27 18:21:04 UTC 2015 - aloisio@gmx.com
665
666
- Update to version 1.8:
667
  API Changes:
668
  * Experimental support for Main12 is now enabled. Partial
669
    assembly support exists.
670
  * Main12 and Intra/Still picture profiles are now supported.
671
    Still picture profile is detected based on
672
    x265_param::totalFrames.
673
  * Three classes of encoding statistics are now available
674
    through the API.
675
    + x265_stats - contains encoding statistics, available
676
      through x265_encoder_get_stats()
677
    + x265_frame_stats and x265_cu_stats - contains frame
678
      encoding statistics, available through recon x265_picture
679
  * --csv
680
  * x265_encoder_log() is now deprecated
681
  * x265_param::csvfn is also deprecated
682
  * --log-level now controls only console logging, frame
683
    level console logging has been removed.
684
  * Support added for new color transfer characteristic ARIB
685
    STD-B67
686
  New Features:
687
  * limit-refs
688
    + This feature limits the references analysed for
689
      individual CUS.
690
    + Provides a nice tradeoff between efficiency and
691
      performance.
692
    + aq-mode 3
693
  * A new aq-mode that provides additional biasing for
694
    low-light conditions.
695
  * An improved scene cut detection logic that allows
696
    ratecontrol to manage visual quality at fade-ins and
697
    fade-outs better.
698
  Preset and Tune Options:
699
  * tune grain
700
    + Increases psyRdoq strength to 10.0, and rdoq-level to 2.
701
    + qg-size
702
  * Default value changed to 32.
703
- soname bump to 68
704
- Reworked arm.patch for 1.8
705
706
-------------------------------------------------------------------
707
Fri May 29 09:11:02 UTC 2015 - aloisio@gmx.com
708
709
- soname bump to 59
710
- Update to version 1.7
711
  * large amount of assembly code optimizations
712
  * some preliminary support for high dynamic range content
713
  * improvements for multi-library support
714
  * some new quality features
715
    (full documentation at: http://x265.readthedocs.org/en/1.7)
716
  * This release simplifies the multi-library support introduced
717
    in version 1.6. Any libx265 can now forward API requests to
718
    other installed libx265 libraries (by name) so applications
719
    like ffmpeg and the x265 CLI can select between 8bit and 10bit
720
    encodes at runtime without the need of a shim library or
721
    library load path hacks. See --output-depth, and
722
    http://x265.readthedocs.org/en/1.7/api.html#multi-library-interface
723
  * For quality, x265 now allows you to configure the quantization
724
    group size smaller than the CTU size (for finer grained AQ
725
    adjustments). See --qg-size.
726
  * x265 now supports limited mid-encode reconfigure via a new public
727
    method: x265_encoder_reconfig()
728
  * For HDR, x265 now supports signaling the SMPTE 2084 color transfer
729
    function, the SMPTE 2086 mastering display color primaries, and the
730
    content light levels. See --master-display, --max-cll
731
  * x265 will no longer emit any non-conformant bitstreams unless
732
    --allow-non-conformance is specified.
733
  * The x265 CLI now supports a simple encode preview feature. See
734
    --recon-y4m-exec.
735
  * The AnnexB NAL headers can now be configured off, via x265_param.bAnnexB
736
    This is not configurable via the CLI because it is a function of the
737
    muxer being used, and the CLI only supports raw output files. See
738
    --annexb
739
  Misc:
740
  * --lossless encodes are now signaled as level 8.5
741
  * --profile now has a -P short option
742
  * The regression scripts used by x265 are now public, and can be found at:
743
    https://bitbucket.org/sborho/test-harness
744
  * x265's cmake scripts now support PGO builds, the test-harness can be
745
    used to drive the profile-guided build process.
746
747
-------------------------------------------------------------------
748
Tue Apr 28 20:08:06 UTC 2015 - aloisio@gmx.com
749
750
- soname bumped to 51
751
- Update to stable version 1.6
752
  Perfomance changes:
753
  * heavy improvements for AVX2 capable platforms
754
    (Haswell and later Intel CPUs) and work efficiency
755
    improvements for multiple-socket machines.
756
  
757
  API changes:
758
  * --threads N replaced by --pools N,N and --lookahead-slices N
759
  * --[no-]rdoq-level N - finer control over RDOQ effort
760
  * --min-cu-size N - trade-off compression for performance
761
  * --max-tu-size N - trade-off compression for performance
762
  * --[no-]temporal-layers - code unreferenced B frames in temporal
763
    layer 1
764
  * --[no-]cip aliases added for --[no-]constrained-intra
765
  * Added support for new color transfer functions "smpte-st-2084"
766
    and "smpte-st-428
767
  * --limit-refs N was added, but not yet implemented
768
  * Deprecated x265_setup_primitives() was removed from the public
769
    API and is no longer exported DLLs
770
  
771
  Threading changes:
772
  * The x265 thread pool has been made NUMA aware.
773
  * The --threads  parameter, which used to specify a global
774
    pool size, has been replaced with a --pools parameter which
775
    allows you to specify a pool size per NUMA node (aka CPU socket
776
    or package). The default is still to allocate one pool worker
777
    thread per logical core on the machine, but with --pools one
778
    can isolate those threads to a given socket.
779
  * Other than socket isolation, the biggest visible change in the
780
    NUMA aware thread pools is the increase in work efficiency.
781
    The total utilization will generally decrease but the performance
782
    will increase since worker threads spend less time context
783
    switching.  Also, the threading of the lookahead was made more
784
    work-efficient. Each lookahead job is a much larger piece of work.
785
    Before (1.5):
786
    disable thread pool: --threads 1
787
    default thread pool: --threads 0
788
    restrict to 4 threads: --threads 4
789
    After (1.6):
790
    disable thread pools: --pools 0
791
    default thread pools: --pools *
792
    restrict to 4 threads: --pools 4
793
    restrict to 4 threads on socket 1: --pools -,4
794
    restrict to all threads on socket 0: --pools +,-
795
  
796
  Multi-lib interface:
797
  * In order to support runtime selection of a libx265
798
    shared library, we have introduced an x265_api structure
799
    and an x265_api_get() function. Applications which use
800
    this interface to acquire the libx265 functional interface
801
    will be able to use shim libraries to bind a particular build
802
    of libx265 at run time. See the API documentation for full
803
    details.
804
805
-------------------------------------------------------------------
806
Sun Feb 22 09:07:11 UTC 2015 - aloisio@gmx.com
807
808
- soname bump
809
- Update to stable version 1.5
810
  * improvements in Main10 compression efficiency and performance
811
    and psycho-visual optimizations now enabled by default
812
  Feature additions:
813
  * analysis re-use features have been completed
814
  * rate control zones have been introduced
815
  * --tune grain introduced
816
  * deblocking tC and Beta offsets are now configurable
817
  * denoise is seperately configurable for inter and intra CUs
818
  * frame based CSV logging has been improved
819
  * New support for VTune task profiles
820
  Presets and defaults:
821
  * ultrafast no longer disables the deblocking loop filter
822
  * psy-rd defaults to 0.3   (was 0, disabled)
823
  * psy-rdoq defaults to 1.0 (was 0, disabled)
824
  * aq-mode defaults to 1    (was 2, auto-variance)
825
  * 4:2:2 and 4:4:4 encodes no longer generate compliance warnings
826
  API changes:
827
  * param.rc.rateTolerance has been removed and replaced with a simpler
828
    param.rc.bStrictCbr flag.
829
  * --log-level debug is now --log-level 4 instead of --log-level 3.
830
    A new 'frame' log level was inserted at level 3 in order to support
831
    frame level CSV logging without also enabling frame level console
832
    logging. Using the string name 'debug' is unambiguous as its
833
    behavior has not changed.
834
  
835
- version 1.4
836
  * large refactoring in the analysis code
837
  Feature additions:
838
  * --pmode (parallel mode decision)
839
  * --pme (parallel motion estimation).
840
  Presets and defaults:
841
  * --amp is now respected in RD levels 2, 3, and 4 (previously only
842
    in 5 and 6).
843
  * --b-intra is now respected in all RD levels.
844
  * --fast-cbf, which has only ever effective at RD levels 5 and 6,
845
    is no longer enabled uselessly in the fastest presets.
846
  * --weightb is now enabled by default at presets slower, veryslow,
847
    and placebo.
848
  * --cu-lossless was changed to only attempt a lossless encode of
849
    the best lossy encode method. This made --cu-lossless a much less
850
    expensive encode option to have enabled, and hopefully made the
851
    feature more robust and maintainable.
852
  * The upper threshold for --psy-rdoq was raised to 50 (from 10)
853
    since the higher values were found to be beneficial for sources
854
    with high frequency noise (film grain).
855
  * The default thread pool size logic was updated to account for the
856
    addition of --pmode and --pme (if WPP is disabled but --pmode or
857
    --pme are enabled, a thread pool is still allocated).
858
  
859
-------------------------------------------------------------------
860
Mon Dec  8 04:53:31 UTC 2014 - crrodriguez@opensuse.org
861
862
- Ensure we use the proper CXXFLAGS, CFLAGS and therefore
863
  debuginfo packages are generated correctly.
864
865
-------------------------------------------------------------------
866
Sat Oct  4 15:24:23 UTC 2014 - aloisio@gmx.com
867
868
- Bumped to version hg20140928
869
870
-------------------------------------------------------------------
871
Thu Jun  5 14:55:45 UTC 2014 - guillaume@opensuse.org
872
873
- Fix ARM build with arm.patch from Arch Linux:
874
  https://github.com/archlinuxarm/PKGBUILDs/blob/master/extra/x265/arm.patch
875
876
-------------------------------------------------------------------
877
Thu May 08 00:00:00 UTC 2014 - Manfred.Tremmel@iiv.de
878
879
- added baselibs.conf
880
881
-------------------------------------------------------------------
882
Mon Mar 24 00:00:00 UTC 2014 - Manfred.Tremmel@iiv.de
883
884
- initial build of todays mercurial checkout
885