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