File x265.changes of Package x265 (Revision 35)

Currently displaying revision 35 , Show latest

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