File x265.changes of Package x265 (Revision 29)

Currently displaying revision 29 , Show latest

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