File x265.changes of Package x265 (Revision 28)

Currently displaying revision 28 , Show latest

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