File x265.changes of Package x265 (Revision 24)
Currently displaying revision 24 , Show latest
472
1
-------------------------------------------------------------------
2
Thu Jul 27 08:33:52 UTC 2017 - joerg.lorenzen@ki.tng.de
3
4
- Update to version 2.5
5
Encoder enhancements
6
* Improved grain handling with --tune grain option by throttling
7
VBV operations to limit QP jumps.
8
* Frame threads are now decided based on number of threads
9
specified in the --pools, as opposed to the number of hardware
10
threads available. The mapping was also adjusted to improve
11
quality of the encodes with minimal impact to performance.
12
* CSV logging feature (enabled by --csv) is now part of the
13
library; it was previously part of the x265 application.
14
Applications that integrate libx265 can now extract frame level
15
statistics for their encodes by exercising this option in the
16
library.
17
* Globals that track min and max CU sizes, number of slices, and
18
other parameters have now been moved into instance-specific
19
variables. Consequently, applications that invoke multiple
20
instances of x265 library are no longer restricted to use the
21
same settings for these parameter options across the multiple
22
instances.
23
* x265 can now generate a seprate library that exports the HDR10+
24
parsing API. Other libraries that wish to use this API may do
25
so by linking against this library. Enable ENABLE_HDR10_PLUS in
26
CMake options and build to generate this library.
27
* SEA motion search receives a 10% performance boost from AVX2
28
optimization of its kernels.
29
* The CSV log is now more elaborate with additional fields such
30
as PU statistics, average-min-max luma and chroma values, etc.
31
Refer to documentation of --csv for details of all fields.
32
* x86inc.asm cleaned-up for improved instruction handling.
33
API changes
34
* New API x265_encoder_ctu_info() introduced to specify suggested
35
partition sizes for various CTUs in a frame. To be used in
36
conjunction with --ctu-info to react to the specified
37
partitions appropriately.
38
* Rate-control statistics passed through the x265_picture object
39
for an incoming frame are now used by the encoder.
40
* Options to scale, reuse, and refine analysis for incoming
41
analysis shared through the x265_analysis_data field in
42
x265_picture for runs that use --analysis-reuse-mode load; use
43
options --scale, --refine-mv, --refine-inter, and
44
--refine-intra to explore.
45
* VBV now has a deterministic mode. Use --const-vbv to exercise.
46
Bug fixes
47
* Several fixes for HDR10+ parsing code including incompatibility
48
with user-specific SEI, removal of warnings, linking issues in
49
linux, etc.
50
* SEI messages for HDR10 repeated every keyint when HDR options
51
(--hdr-opt, --master-display) specified.
52
- soname bump to 130.
53
54
-------------------------------------------------------------------
55
Thu Apr 27 14:15:13 UTC 2017 - joerg.lorenzen@ki.tng.de
56
57
- Update to version 2.4
58
Encoder enhancements
59
* HDR10+ supported. Dynamic metadata may be either supplied as a
60
bitstream via the userSEI field of x265_picture, or as a json
61
jile that can be parsed by x265 and inserted into the bitstream;
62
use --dhdr10-info to specify json file name, and --dhdr10-opt
63
to enable optimization of inserting tone-map information only
64
at IDR frames, or when the tone map information changes.
65
* Lambda tables for 8, 10, and 12-bit encoding revised, resulting
66
in significant enhancement to subjective visual quality.
67
* Enhanced HDR10 encoding with HDR-specific QP optimzations for
68
chroma, and luma planes of WCG content enabled; use --hdr-opt
69
to activate.
70
* Ability to accept analysis information from other previous
71
encodes (that may or may not be x265), and selectively reuse
72
and refine analysis for encoding subsequent passes enabled with
73
the --refine-level option.
74
* Slow and veryslow presets receive a 20% speed boost at
75
iso-quality by enabling the --limit-tu option.
76
* The bitrate target for x265 can now be dynamically reconfigured
77
via the reconfigure API.
78
* Performance optimized SAO algorithm introduced via the
79
--limit-sao option; seeing 10% speed benefits at faster presets.
80
API changes
81
* x265_reconfigure API now also accepts rate-control parameters
82
for dynamic reconfiguration.
83
* Several additions to data fields in x265_analysis to support
84
--refine-level: see x265.h for more details.
85
Bug fixes
86
* Avoid negative offsets in x265 lambda2 table with SAO enabled.
87
* Fix mingw32 build error.
88
* Seek now enabled for pipe input, in addition to file-based input.
89
* Fix issue of statically linking core-utils not working in linux.
90
* Fix visual artifacts with --multi-pass-opt-distortion with VBV.
91
* Fix bufferFill stats reported in csv.
92
- soname bump to 116.
93
94
-------------------------------------------------------------------
95
Fri Feb 24 14:03:24 UTC 2017 - ismail@i10z.com
96
97
- Update to version 2.3
98
Encoder enhancements
99
* New SSIM-based RD-cost computation for improved visual quality,
100
and efficiency; use --ssim-rd to exercise.
101
* Multi-pass encoding can now share analysis information from
102
prior passes.
103
* A dedicated thread pool for lookahead can now be specified
104
with --lookahead-threads.
105
* option:–dynamic-rd dynamically increase analysis in areas
106
where the bitrate is being capped by VBV; works for both
107
CRF and ABR encodes with VBV settings.
108
* The number of bits used to signal the delta-QP can be
109
optimized with the --opt-cu-delta-qp option.
110
* Experimental feature option:–aq-motion adds new QP offsets
111
based on relative motion of a block with respect to the
112
movement of the frame.
113
API changes
114
* Reconfigure API now supports signalling new scaling lists.
115
* x265 application’s csv functionality now reports time
116
(in milliseconds) taken to encode each frame.
117
* --strict-cbr enables stricter bitrate adherence by adding
118
filler bits when achieved bitrate is lower than the target.
119
* --hdr can be used to ensure that max-cll and max-fall values
120
are always signaled (even if 0,0).
121
Bug fixes
122
* Fixed scaling lists support for 4:4:4 videos.
123
* Inconsistent output fix for --opt-qp-pss by removing last
124
slice’s QP from cost calculation.
125
126
-------------------------------------------------------------------
127
Sun Jan 1 20:32:07 UTC 2017 - ismail@i10z.com
128
129
- Update to version 2.2
130
Encoder enhancements
131
* Enhancements to TU selection algorithm with early-outs for
132
improved speed; use --limit-tu to exercise.
133
* New motion search method SEA (Successive Elimination Algorithm)
134
supported now as :option: –me 4
135
* Bit-stream optimizations to improve fields in PPS and SPS for
136
bit-rate savings through --[no-]opt-qp-pps,
137
--[no-]opt-ref-list-length-pps, and --[no-]multi-pass-opt-rps.
138
* Enabled using VBV constraints when encoding without WPP.
139
* All param options dumped in SEI packet in bitstream when info
140
selected.
141
API changes
142
* Options to disable SEI and optional-VUI messages from bitstream
143
made more descriptive.
144
* New option --scenecut-bias to enable controlling bias to mark
145
scene-cuts via cli.
146
* Support mono and mono16 color spaces for y4m input.
147
* --min-cu-size of 64 no-longer supported for reasons of
148
visual quality.
149
* API for CSV now expects version string for better integration
150
of x265 into other applications.
151
Bug fixes
152
* Several fixes to slice-based encoding.
153
* --log2-max-poc-lsb‘s range limited according to HEVC spec.
154
* Restrict MVs to within legal boundaries when encoding.
155
156
-------------------------------------------------------------------
157
Thu Dec 22 12:59:47 UTC 2016 - scarabeus@opensuse.org
158
159
- Add conditional for the numa-devel again it was not ment to be dropped
160
- Add patch x265.pkgconfig.patch to fix pkgconfig
161
162
-------------------------------------------------------------------
163
Tue Dec 20 12:02:33 UTC 2016 - scarabeus@opensuse.org
164
165
- Switch to use cmake macros
166
167
-------------------------------------------------------------------
168
Thu Sep 29 12:26:59 UTC 2016 - ismail@i10z.com
169
170
- Update to version 2.1
171
Encoder enhancements
172
* Support for qg-size of 8
173
* Support for inserting non-IDR I-frames at scenecuts and when
174
running with settings for fixed-GOP (min-keyint = max-keyint)
175
* Experimental support for slice-parallelism.
176
API changes
177
* Encode user-define SEI messages passed in through x265_picture
178
object.
179
* Disable SEI and VUI messages from the bitstream
180
* Specify qpmin and qpmax
181
* Control number of bits to encode POC.
182
Bug fixes
183
* QP fluctuation fix for first B-frame in mini-GOP for 2-pass
184
encoding with tune-grain.
185
* Assembly fix for crashes in 32-bit from dct_sse4.
186
* Threadpool creation fix in windows platform.
187
188
-------------------------------------------------------------------
189
Sun Aug 28 11:51:23 UTC 2016 - joerg.lorenzen@ki.tng.de
190
191
- Update to version 2.0
192
API and Key Behavior Changes
193
* x265_rc_stats added to x265_picture, containing all RC decision
194
points for that frame.
195
* PTL: high tier is now allowed by default, chosen only if
196
necessary.
197
* multi-pass: First pass now uses slow-firstpass by default,
198
enabling better RC decisions in future passes.
199
* pools: fix behaviour on multi-socketed Windows systems, provide
200
more flexibility in determining thread and pool counts.
201
* ABR: improve bits allocation in the first few frames, abr reset,
202
vbv and cutree improved.
203
New Features
204
* uhd-bd: Enforce Ultra-HD Blu-ray Disc parameters
205
(overrides any other settings).
206
* rskip: Enables skipping recursion to analyze lower CU sizes
207
using heuristics at different rd-levels. Provides good visual
208
quality gains at the highest quality presets.
209
* rc-grain: Enables a new rate control mode specifically for
210
grainy content. Strictly prevents QP oscillations within and
211
between frames to avoid grain fluctuations.
212
* tune grain: A fully refactored and improved option to encode
213
film grain content including QP control as well as analysis
214
options.
215
* asm: ARM assembly is now enabled by default, native or cross
216
compiled builds supported on armv6 and later systems.
217
Misc
218
* An SSIM calculation bug was corrected
219
- soname bump to 87.
220
- Fixed arm.patch.
221
- Added libnuma-devel as buildrequires for arch x86_64 (except
222
for openSUSE 13.1 because libnuma-devel >= 2.0.9 is required).
223
224
-------------------------------------------------------------------
225
Wed Feb 3 13:22:42 UTC 2016 - ismail@i10z.com
226
227
- Update to version 1.9
228
API Changes:
229
* x265_frame_stats returns many additional fields: maxCLL, maxFALL,
230
residual energy, scenecut and latency logging
231
* --qpfile now supports frametype 'K"
232
* x265 now allows CRF ratecontrol in pass N (N greater than or equal to 2)
233
* Chroma subsampling format YUV 4:0:0 is now fully supported and tested
234
New Features:
235
* Quant offsets: This feature allows block level quantization offsets
236
to be specified for every frame. An API-only feature.
237
* --intra-refresh: Keyframes can be replaced by a moving column
238
of intra blocks in non-keyframes.
239
* --limit-modes: Intelligently restricts mode analysis.
240
* --max-luma and --min-luma for luma clipping, optional for HDR use-cases
241
* Emergency denoising is now enabled by default in very low bitrate,
242
VBV encodes
243
Presets and Performance:
244
* Recently added features lookahead-slices, limit-modes, limit-refs
245
have been enabled by default for applicable presets.
246
* The default psy-rd strength has been increased to 2.0
247
* Multi-socket machines now use a single pool of threads that can
248
work cross-socket.
249
250
-------------------------------------------------------------------
251
Fri Nov 27 18:21:04 UTC 2015 - aloisio@gmx.com
252
253
- Update to version 1.8:
254
API Changes:
255
* Experimental support for Main12 is now enabled. Partial
256
assembly support exists.
257
* Main12 and Intra/Still picture profiles are now supported.
258
Still picture profile is detected based on
259
x265_param::totalFrames.
260
* Three classes of encoding statistics are now available
261
through the API.
262
+ x265_stats - contains encoding statistics, available
263
through x265_encoder_get_stats()
264
+ x265_frame_stats and x265_cu_stats - contains frame
265
encoding statistics, available through recon x265_picture
266
* --csv
267
* x265_encoder_log() is now deprecated
268
* x265_param::csvfn is also deprecated
269
* --log-level now controls only console logging, frame
270
level console logging has been removed.
271
* Support added for new color transfer characteristic ARIB
272
STD-B67
273
New Features:
274
* limit-refs
275
+ This feature limits the references analysed for
276
individual CUS.
277
+ Provides a nice tradeoff between efficiency and
278
performance.
279
+ aq-mode 3
280
* A new aq-mode that provides additional biasing for
281
low-light conditions.
282
* An improved scene cut detection logic that allows
283
ratecontrol to manage visual quality at fade-ins and
284
fade-outs better.
285
Preset and Tune Options:
286
* tune grain
287
+ Increases psyRdoq strength to 10.0, and rdoq-level to 2.
288
+ qg-size
289
* Default value changed to 32.
290
- soname bump to 68
291
- Reworked arm.patch for 1.8
292
293
-------------------------------------------------------------------
294
Fri May 29 09:11:02 UTC 2015 - aloisio@gmx.com
295
296
- soname bump to 59
297
- Update to version 1.7
298
* large amount of assembly code optimizations
299
* some preliminary support for high dynamic range content
300
* improvements for multi-library support
301
* some new quality features
302
(full documentation at: http://x265.readthedocs.org/en/1.7)
303
* This release simplifies the multi-library support introduced
304
in version 1.6. Any libx265 can now forward API requests to
305
other installed libx265 libraries (by name) so applications
306
like ffmpeg and the x265 CLI can select between 8bit and 10bit
307
encodes at runtime without the need of a shim library or
308
library load path hacks. See --output-depth, and
309
http://x265.readthedocs.org/en/1.7/api.html#multi-library-interface
310
* For quality, x265 now allows you to configure the quantization
311
group size smaller than the CTU size (for finer grained AQ
312
adjustments). See --qg-size.
313
* x265 now supports limited mid-encode reconfigure via a new public
314
method: x265_encoder_reconfig()
315
* For HDR, x265 now supports signaling the SMPTE 2084 color transfer
316
function, the SMPTE 2086 mastering display color primaries, and the
317
content light levels. See --master-display, --max-cll
318
* x265 will no longer emit any non-conformant bitstreams unless
319
--allow-non-conformance is specified.
320
* The x265 CLI now supports a simple encode preview feature. See
321
--recon-y4m-exec.
322
* The AnnexB NAL headers can now be configured off, via x265_param.bAnnexB
323
This is not configurable via the CLI because it is a function of the
324
muxer being used, and the CLI only supports raw output files. See
325
--annexb
326
Misc:
327
* --lossless encodes are now signaled as level 8.5
328
* --profile now has a -P short option
329
* The regression scripts used by x265 are now public, and can be found at:
330
https://bitbucket.org/sborho/test-harness
331
* x265's cmake scripts now support PGO builds, the test-harness can be
332
used to drive the profile-guided build process.
333
334
-------------------------------------------------------------------
335
Tue Apr 28 20:08:06 UTC 2015 - aloisio@gmx.com
336
337
- soname bumped to 51
338
- Update to stable version 1.6
339
Perfomance changes:
340
* heavy improvements for AVX2 capable platforms
341
(Haswell and later Intel CPUs) and work efficiency
342
improvements for multiple-socket machines.
343
344
API changes:
345
* --threads N replaced by --pools N,N and --lookahead-slices N
346
* --[no-]rdoq-level N - finer control over RDOQ effort
347
* --min-cu-size N - trade-off compression for performance
348
* --max-tu-size N - trade-off compression for performance
349
* --[no-]temporal-layers - code unreferenced B frames in temporal
350
layer 1
351
* --[no-]cip aliases added for --[no-]constrained-intra
352
* Added support for new color transfer functions "smpte-st-2084"
353
and "smpte-st-428
354
* --limit-refs N was added, but not yet implemented
355
* Deprecated x265_setup_primitives() was removed from the public
356
API and is no longer exported DLLs
357
358
Threading changes:
359
* The x265 thread pool has been made NUMA aware.
360
* The --threads parameter, which used to specify a global
361
pool size, has been replaced with a --pools parameter which
362
allows you to specify a pool size per NUMA node (aka CPU socket
363
or package). The default is still to allocate one pool worker
364
thread per logical core on the machine, but with --pools one
365
can isolate those threads to a given socket.
366
* Other than socket isolation, the biggest visible change in the
367
NUMA aware thread pools is the increase in work efficiency.
368
The total utilization will generally decrease but the performance
369
will increase since worker threads spend less time context
370
switching. Also, the threading of the lookahead was made more
371
work-efficient. Each lookahead job is a much larger piece of work.
372
Before (1.5):
373
disable thread pool: --threads 1
374
default thread pool: --threads 0
375
restrict to 4 threads: --threads 4
376
After (1.6):
377
disable thread pools: --pools 0
378
default thread pools: --pools *
379
restrict to 4 threads: --pools 4
380
restrict to 4 threads on socket 1: --pools -,4
381
restrict to all threads on socket 0: --pools +,-
382
383
Multi-lib interface:
384
* In order to support runtime selection of a libx265
385
shared library, we have introduced an x265_api structure
386
and an x265_api_get() function. Applications which use
387
this interface to acquire the libx265 functional interface
388
will be able to use shim libraries to bind a particular build
389
of libx265 at run time. See the API documentation for full
390
details.
391
392
-------------------------------------------------------------------
393
Sun Feb 22 09:07:11 UTC 2015 - aloisio@gmx.com
394
395
- soname bump
396
- Update to stable version 1.5
397
* improvements in Main10 compression efficiency and performance
398
and psycho-visual optimizations now enabled by default
399
Feature additions:
400
* analysis re-use features have been completed
401
* rate control zones have been introduced
402
* --tune grain introduced
403
* deblocking tC and Beta offsets are now configurable
404
* denoise is seperately configurable for inter and intra CUs
405
* frame based CSV logging has been improved
406
* New support for VTune task profiles
407
Presets and defaults:
408
* ultrafast no longer disables the deblocking loop filter
409
* psy-rd defaults to 0.3 (was 0, disabled)
410
* psy-rdoq defaults to 1.0 (was 0, disabled)
411
* aq-mode defaults to 1 (was 2, auto-variance)
412
* 4:2:2 and 4:4:4 encodes no longer generate compliance warnings
413
API changes:
414
* param.rc.rateTolerance has been removed and replaced with a simpler
415
param.rc.bStrictCbr flag.
416
* --log-level debug is now --log-level 4 instead of --log-level 3.
417
A new 'frame' log level was inserted at level 3 in order to support
418
frame level CSV logging without also enabling frame level console
419
logging. Using the string name 'debug' is unambiguous as its
420
behavior has not changed.
421
422
- version 1.4
423
* large refactoring in the analysis code
424
Feature additions:
425
* --pmode (parallel mode decision)
426
* --pme (parallel motion estimation).
427
Presets and defaults:
428
* --amp is now respected in RD levels 2, 3, and 4 (previously only
429
in 5 and 6).
430
* --b-intra is now respected in all RD levels.
431
* --fast-cbf, which has only ever effective at RD levels 5 and 6,
432
is no longer enabled uselessly in the fastest presets.
433
* --weightb is now enabled by default at presets slower, veryslow,
434
and placebo.
435
* --cu-lossless was changed to only attempt a lossless encode of
436
the best lossy encode method. This made --cu-lossless a much less
437
expensive encode option to have enabled, and hopefully made the
438
feature more robust and maintainable.
439
* The upper threshold for --psy-rdoq was raised to 50 (from 10)
440
since the higher values were found to be beneficial for sources
441
with high frequency noise (film grain).
442
* The default thread pool size logic was updated to account for the
443
addition of --pmode and --pme (if WPP is disabled but --pmode or
444
--pme are enabled, a thread pool is still allocated).
445
446
-------------------------------------------------------------------
447
Mon Dec 8 04:53:31 UTC 2014 - crrodriguez@opensuse.org
448
449
- Ensure we use the proper CXXFLAGS, CFLAGS and therefore
450
debuginfo packages are generated correctly.
451
452
-------------------------------------------------------------------
453
Sat Oct 4 15:24:23 UTC 2014 - aloisio@gmx.com
454
455
- Bumped to version hg20140928
456
457
-------------------------------------------------------------------
458
Thu Jun 5 14:55:45 UTC 2014 - guillaume@opensuse.org
459
460
- Fix ARM build with arm.patch from Arch Linux:
461
https://github.com/archlinuxarm/PKGBUILDs/blob/master/extra/x265/arm.patch
462
463
-------------------------------------------------------------------
464
Thu May 08 00:00:00 UTC 2014 - Manfred.Tremmel@iiv.de
465
466
- added baselibs.conf
467
468
-------------------------------------------------------------------
469
Mon Mar 24 00:00:00 UTC 2014 - Manfred.Tremmel@iiv.de
470
471
- initial build of todays mercurial checkout
472