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