-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathffmpeg.spec
1473 lines (1157 loc) · 50 KB
/
ffmpeg.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# spec file for package ffmpeg
#
# Copyright (c) 2022 UnitedRPMs.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://goo.gl/zqFJft
#
%undefine _debuginfo_subpackages
%undefine _debugsource_packages
#global _lto_cflags %{nil}
%global _build_id_links none
%if 0%{?fedora} >= 25
# OpenCV 3.X has an overlinking issue - unsuitable for core libraries
# Reported as https://github.com/opencv/opencv/issues/7001
%global _without_opencv 1
%endif
%if 0%{?rhel}
%global _without_frei0r 1
%global _without_vpx 1
%bcond_without opencv
%else
%bcond_with opencv
%endif
# Wait, will be enabled the next update
# https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/81d3d7dd44acc7ae7c57e99176d1d428fb40c353:/Changelog
%bcond_with dav1d
%bcond_with davs2
%bcond_with xavs2
%bcond_with libfdk-aac
# We need to test it
# fdk-aac-free https://bugzilla.redhat.com/show_bug.cgi?id=1501522 doesn't support
# variable bitrate (`-q` flag)
# Globals for git repository
# https://git.ffmpeg.org/gitweb/ffmpeg.git
%global commit0 1bad30dbe34f2d100b43e8f773d3fe0b5eb23523
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
%global gver .git%{shortcommit0}
Summary: Digital VCR and streaming server
Name: ffmpeg
Version: 5.1.1
Release: 7%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
%else
License: GPLv2+
%endif
URL: http://ffmpeg.org/
Source0: https://git.ffmpeg.org/gitweb/ffmpeg.git/snapshot/%{commit0}.tar.gz#/%{name}-%{shortcommit0}.tar.gz
# forces the buffers to be flushed after a drain has completed. Thanks to jcowgill
#Patch0: buffer_flush.patch
#Patch0: 010-ffmpeg-fix-vmaf-model-path.txt
#Patch2: uavs3d_version.patch
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
BuildRequires: bzip2-devel
%{?_with_faac:BuildRequires: faac-devel}
%{?_with_flite:BuildRequires: flite-devel}
BuildRequires: fontconfig-devel
BuildRequires: freetype-devel
%{!?_without_frei0r:BuildRequires: frei0r-devel}
%{?_with_gme:BuildRequires: game-music-emu-devel}
BuildRequires: gnutls-devel
%if 0%{?fedora} >= 36
BuildRequires: annobin-plugin-gcc
%endif
BuildRequires: gsm-devel
BuildRequires: lame-devel >= 3.98.3
BuildRequires: jack-audio-connection-kit-devel
%{!?_without_ladspa:BuildRequires: ladspa-devel}
BuildRequires: libass-devel
BuildRequires: libbluray-devel
%{?_with_caca:BuildRequires: libcaca-devel}
%{!?_without_cdio:BuildRequires: libcdio-paranoia-devel}
#libcrystalhd is currently broken
%{?_with_crystalhd:BuildRequires: libcrystalhd-devel}
%if 0%{?_with_ieee1394}
BuildRequires: libavc1394-devel
BuildRequires: libdc1394-devel
BuildRequires: libiec61883-devel
%endif
BuildRequires: libgcrypt-devel
BuildRequires: libGL-devel
BuildRequires: libmodplug-devel
BuildRequires: libtheora-devel
BuildRequires: libv4l-devel
BuildRequires: libvdpau-devel
BuildRequires: libvorbis-devel
%{?!_without_vpx:BuildRequires: libvpx-devel >= 0.9.1}
%ifarch %{ix86} x86_64
%if 0%{?fedora} >= 31
BuildRequires: intel-mediasdk-devel
%else
BuildRequires: libmfx-devel
%endif
BuildRequires: libXvMC-devel
BuildRequires: libva-devel >= 0.31.0
BuildRequires: yasm
%endif
%{?_with_netcdf:BuildRequires: netcdf-devel}
%{!?_without_nvenc:BuildRequires: nvenc-devel nv-codec-headers >= 9.0.18.2}
%{?_with_amr:BuildRequires: opencore-amr-devel vo-amrwbenc-devel}
%{!?_without_openal:BuildRequires: openal-soft-devel}
%if 0%{!?_without_opencl:1}
BuildRequires: opencl-headers ocl-icd-devel
Recommends: opencl-icd
%endif
%{!?_without_opencv:BuildRequires: opencv-devel}
BuildRequires: openjpeg2-devel
BuildRequires: openjpeg-devel
BuildRequires: opus-devel
%{!?_without_pulse:BuildRequires: pulseaudio-libs-devel}
%if 0%{?fedora} >= 35
BuildRequires: libpulsecommon-15.0.so
%endif
BuildRequires: perl(Pod::Man)
BuildRequires: SDL2-devel
BuildRequires: soxr-devel
BuildRequires: speex-devel
BuildRequires: subversion
%{?_with_tesseract:BuildRequires: tesseract-devel}
#BuildRequires: texi2html
BuildRequires: texinfo
%{!?_without_x264:BuildRequires: x264-devel >= 1:0.164}
%{!?_without_x265:BuildRequires: x265-devel >= 3.5}
%{!?_without_xvid:BuildRequires: xvidcore-devel}
BuildRequires: zlib-devel
%{?_with_zvbi:BuildRequires: zvbi-devel}
BuildRequires: libxcb-devel libxcb
# New support
BuildRequires: pkgconfig(uavs3d)
BuildRequires: librockchip-devel librockchip-vpu-devel
BuildRequires: lilv-devel
BuildRequires: libdrm-devel
BuildRequires: openh264-devel >= 2.2.0
BuildRequires: kvazaar-devel >= 2.0.0
BuildRequires: libmysofa-devel >= 1.2
BuildRequires: shine-devel
BuildRequires: vid.stab-devel >= 1.1.0
BuildRequires: libvmaf-devel
BuildRequires: zvbi-devel
BuildRequires: alsa-lib-devel
BuildRequires: svt-av1-devel
BuildRequires: AMF-devel
%if 0%{?fedora} >= 31
BuildRequires: libopenmpt-devel
%endif
%if 0%{?fedora} >= 35
BuildRequires: libaom-devel >= 3.2.0
%else
BuildRequires: libaom-devel
%endif
BuildRequires: vapoursynth-devel
BuildRequires: srt-devel
%if 0%{?fedora} >= 34
BuildRequires: rav1e-devel
%endif
%if %{without dav1d}
%if 0%{?fedora} >= 34
BuildRequires: libdav1d-devel >= 0.8.0
%else
BuildRequires: libdav1d-devel >= 0.5.2
%endif
%endif
%if %{without davs2}
BuildRequires: davs2-devel >= 1.5.115
%endif
%if %{without xavs2}
BuildRequires: xavs2-devel >= 1.2.77
%endif
%if %{without libfdk-aac}
BuildRequires: fdk-aac-free-devel >= 2.0.0
%endif
BuildRequires: cmrt-devel
BuildRequires: libva-devel
BuildRequires: libva-intel-hybrid-driver
BuildRequires: libva-intel-driver
BuildRequires: vulkan-loader vulkan-loader-devel vulkan-headers vulkan-loader-compat-devel
BuildRequires: glslang glslang-devel
#BuildRequires: lensfun-devel
%if 0%{?fedora} >= 33
BuildRequires: libsmbclient-devel >= 4.13.3
%endif
BuildRequires: libxml2-devel
# Missed requires
BuildRequires: rubberband-devel
BuildRequires: pkgconfig(rav1e)
BuildRequires: ilbc-devel
BuildRequires: libbs2b-devel
BuildRequires: libchromaprint-devel
BuildRequires: librsvg2-devel
BuildRequires: librtmp-devel
BuildRequires: libssh-devel
BuildRequires: libwebp-devel
#BuildRequires: nasm
BuildRequires: opencore-amr-devel
BuildRequires: snappy-devel
BuildRequires: tesseract-devel
BuildRequires: twolame-devel
BuildRequires: vo-amrwbenc-devel
BuildRequires: wavpack-devel
BuildRequires: zeromq-devel
BuildRequires: lensfun-devel
BuildRequires: celt-devel
# Congrats to Fedora with the implementation of ffmpeg-free, but various our packages need other supports.
Provides: %{name}-free%{?_isa} = %{version}-%{release}
%description
FFmpeg is a complete and free Internet live audio and video
broadcasting solution for Linux/Unix. It also includes a digital
VCR. It can encode in real time in many formats including MPEG1 audio
and video, MPEG4, h263, ac3, asf, avi, real, mjpeg, and flash.
%package libs
Summary: Libraries for %{name}
Recommends: fdk-aac-free
Requires: opus
Requires: libogg
# Congrats to Fedora with the implementation of ffmpeg-free, but various our packages need other supports.
Provides: libavcodec-free%{?_isa} = %{version}-%{release}
Provides: libavfilter-free%{?_isa} = %{version}-%{release}
Provides: libavformat-free%{?_isa} = %{version}-%{release}
Provides: libavutil-free%{?_isa} = %{version}-%{release}
Provides: libpostproc-free%{?_isa} = %{version}-%{release}
Provides: libswresample-free%{?_isa} = %{version}-%{release}
Provides: libswscale-free%{?_isa} = %{version}-%{release}
%description libs
FFmpeg is a complete and free Internet live audio and video
broadcasting solution for Linux/Unix. It also includes a digital
VCR. It can encode in real time in many formats including MPEG1 audio
and video, MPEG4, h263, ac3, asf, avi, real, mjpeg, and flash.
This package contains the libraries for %{name}
%package -n libavdevice
Summary: Special devices muxing/demuxing library
%description -n libavdevice
Libavdevice is a complementary library to libavf "libavformat". It provides
various "special" platform-specific muxers and demuxers, e.g. for grabbing
devices, audio capture and playback etc.
%package devel
Summary: Development package for %{name}
Requires: %{name}-libs%{_isa} = %{version}-%{release}
Requires: libavdevice%{_isa} = %{version}-%{release}
Requires: pkgconfig
Requires: libxcb
%description devel
FFmpeg is a complete and free Internet live audio and video
broadcasting solution for Linux/Unix. It also includes a digital
VCR. It can encode in real time in many formats including MPEG1 audio
and video, MPEG4, h263, ac3, asf, avi, real, mjpeg, and flash.
This package contains development files for %{name}
%global ff_configure \
./configure \\\
--prefix=%{_prefix} \\\
--bindir=%{_bindir} \\\
--datadir=%{_datadir}/%{name} \\\
--docdir=%{_docdir}/%{name} \\\
--incdir=%{_includedir}/%{name} \\\
--libdir=%{_libdir} \\\
--mandir=%{_mandir} \\\
--arch=%{_target_cpu} \\\
--optflags="%{optflags}" \\\
--extra-cflags="-I%{_includedir}/rav1e" \\\
%{?build_suffix:--build-suffix=%{build_suffix}} \\\
%{!?_without_amr:--enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-version3} \\\
--enable-bzlib \\\
%{?_with_chromaprint:--enable-chromaprint} \\\
%{!?_with_crystalhd:--disable-crystalhd} \\\
--enable-fontconfig \\\
%{!?_without_frei0r:--enable-frei0r} \\\
--enable-gcrypt \\\
%{?_with_gmp:--enable-gmp --enable-version3} \\\
--enable-gnutls \\\
%{!?_without_ladspa:--enable-ladspa} \\\
%{!?_without_aom:--enable-libaom} \\\
%{!?_without_dav1d:--enable-libdav1d} \\\
%{!?_without_ass:--enable-libass} \\\
%{!?_without_bluray:--enable-libbluray} \\\
%{?_with_bs2b:--enable-libbs2b} \\\
%{?_with_caca:--enable-libcaca} \\\
%{?_with_cuvid:--enable-cuvid --enable-nonfree} \\\
%{!?_without_cdio:--enable-libcdio} \\\
%{?_with_ieee1394:--enable-libdc1394 --enable-libiec61883} \\\
--enable-libdrm \\\
%{?_with_faac:--enable-libfaac --enable-nonfree} \\\
%{?_with_fdk_aac:--enable-libfdk-aac --enable-nonfree} \\\
%{?_with_flite:--enable-libflite} \\\
%{!?_without_jack:--enable-libjack} \\\
--enable-libfreetype \\\
%{!?_without_fribidi:--enable-libfribidi} \\\
%{?_with_gme:--enable-libgme} \\\
--enable-libgsm \\\
%{?_with_ilbc:--enable-libilbc} \\\
--disable-liblensfun \\\
%{?_with_libnpp:--enable-libnpp --enable-nonfree} \\\
--enable-libmp3lame \\\
--enable-libmysofa \\\
%{?_with_netcdf:--enable-netcdf} \\\
%{?_with_mmal:--enable-mmal} \\\
%{!?_without_nvenc:--enable-nvenc} \\\
%{?_with_omx:--enable-omx} \\\
%{?_with_omx_rpi:--enable-omx-rpi} \\\
%{!?_without_openal:--enable-openal} \\\
%{!?_without_opencl:--enable-opencl} \\\
%{?_with_opencv:--enable-libopencv} \\\
%{!?_without_opengl:--enable-opengl} \\\
--enable-libopenjpeg \\\
--enable-libopenmpt \\\
%{!?_without_opus:--enable-libopus} \\\
%{!?_without_pulse:--enable-libpulse} \\\
--enable-librsvg \\\
%{?_with_rav1e:--enable-librav1e} \\\
%{?_with_rtmp:--enable-librtmp} \\\
%{?_with_rubberband:--enable-librubberband} \\\
%{?_with_smb:--enable-libsmbclient --enable-version3} \\\
%{?_with_snappy:--enable-libsnappy} \\\
--enable-libsoxr \\\
--enable-libspeex \\\
--enable-libsrt \\\
--enable-libssh \\\
%{?_with_svtav1:--enable-libsvtav1} \\\
%{?_with_tesseract:--enable-libtesseract} \\\
--enable-libtheora \\\
%{?_with_twolame:--enable-libtwolame} \\\
--enable-libvorbis \\\
--enable-libv4l2 \\\
%{!?_without_vidstab:--enable-libvidstab} \\\
%{?_with_vmaf:--enable-libvmaf --enable-version3} \\\
%{?_with_vapoursynth:--enable-vapoursynth} \\\
%{!?_without_vpx:--enable-libvpx} \\\
%{!?_without_vulkan:--enable-vulkan --enable-libglslang} \\\
%{?_with_webp:--enable-libwebp} \\\
%{!?_without_x264:--enable-libx264} \\\
%{!?_without_x265:--enable-libx265} \\\
%{!?_without_xvid:--enable-libxvid} \\\
--enable-libxml2 \\\
%{!?_without_zimg--enable-libzimg} \\\
%{?_with_zmq:--enable-libzmq} \\\
%{!?_without_zvbi:--enable-libzvbi} \\\
%{!?_without_lv2:--enable-lv2} \\\
--enable-avfilter \\\
--enable-libmodplug \\\
--enable-postproc \\\
--enable-pthreads \\\
--disable-static \\\
--enable-shared \\\
%{!?_without_gpl:--enable-gpl} \\\
--enable-sdl2 \\\
--enable-libkvazaar \\\
--enable-libcelt \\\
--enable-gray \\\
--enable-libmfx \\\
--enable-libshine \\\
--enable-libopenh264 \\\
--enable-rdft \\\
--enable-pixelutils \\\
--disable-debug \\\
--enable-swscale \\\
--enable-rkmpp --enable-version3 \\\
--enable-libuavs3d \\\
--disable-stripping
# --disable-error-resilience \\\ broken in 4.4
# --enable-liblensfun \\\ broken in 4.4
# --enable-pic \\\ bad performance
#--arch=%%{_target_cpu} \\\
# use optimizations for current CI CPU, useless 'cause not universal
#--enable-x11grab \\\
# was deleted as legacy
# https://www.ffmpeg.org/ffmpeg-devices.html#x11grab
%prep
%autosetup -n %{name}-%{shortcommit0} -p1
# fix -O3 -g in host_cflags
sed -i "s|check_host_cflags -O3|check_host_cflags %{optflags}|" configure
mkdir -p _doc/examples
cp -pr doc/examples/{*.c,Makefile,README} _doc/examples/
# fix glslang compatibility (We need test it; but our glslang don't need it)
# sed -i "s|#include <glslang/Include/revision.h>||" libavfilter/glslang.cpp (We have a patch)
#sed -i "s|-lOSDependent||" configure
#sed -i "s|-lOGLCompiler||" configure
# fix error in vulkan pkgconfig (We need previlegies and touch the official package; we don't need it; solved with our vulkan-loader-compat-devel)
# sed -i 's|vulkan64|vulkan|g' /usr/lib64/pkgconfig/vulkan.pc
%build
%{ff_configure}\
--shlibdir=%{_libdir} \
%ifnarch %{ix86}
--enable-lto \
%endif
%ifarch %{ix86}
--cpu=%{_target_cpu} \
%endif
--enable-runtime-cpudetect \
%if %{without davs2}
--enable-libdavs2 \
%endif
%if %{without xavs2}
--enable-libxavs2 \
%endif
%if %{without libfdk-aac}
--enable-libfdk-aac --enable-nonfree \
%endif
--enable-vaapi \
%if %{without dav1d}
--enable-libdav1d \
%endif
%if 0%{?fedora} >= 34
--enable-libvmaf --enable-version3 \
%endif
--enable-libopenmpt \
--enable-libsmbclient --enable-version3
# not yet
#--enable-librav1e \
# incompatible
#--enable-libglslang \
#--enable-libvmaf --enable-version3 \
%make_build V=1
make documentation V=1
make alltools V=1
%install
%make_install V=1
rm -r %{buildroot}%{_datadir}/%{name}/examples
install -pm755 tools/qt-faststart %{buildroot}%{_bindir}
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
%post -n libavdevice -p /sbin/ldconfig
%postun -n libavdevice -p /sbin/ldconfig
%if 0%{!?ffmpegsuffix:1}
%files
%doc COPYING.* CREDITS README.md
%{_bindir}/ffmpeg
%{_bindir}/ffplay
%{_bindir}/ffprobe
%{_bindir}/qt-faststart
%{_mandir}/man1/ffmpeg*.1*
%{_mandir}/man1/ffplay*.1*
%{_mandir}/man1/ffprobe*.1*
%{_datadir}/%{name}
%endif
%files libs
%{_libdir}/lib*.so.*
%exclude %{_libdir}/libavdevice.so.*
%{_mandir}/man3/lib*.3.gz
%exclude %{_mandir}/man3/libavdevice.3*
%files -n libavdevice
%{_libdir}/libavdevice.so.*
%{_mandir}/man3/libavdevice.3*
%files devel
%doc MAINTAINERS doc/APIchanges doc/*.txt
%doc _doc/examples
%doc %{_docdir}/%{name}/*
%{_includedir}/%{name}
%{_libdir}/pkgconfig/lib*.pc
%{_libdir}/lib*.so
%changelog
* Tue Sep 20 2022 Unitedrpms Project <unitedrpms AT protonmail DOT com> 5.1.1-7
- Updated to 5.1.1
* Fri Jun 17 2022 Unitedrpms Project <unitedrpms AT protonmail DOT com> 5.0.1-14
- Rebuilt for x264
* Fri Apr 15 2022 Unitedrpms Project <unitedrpms AT protonmail DOT com> 5.0.1-7
- Updated to 5.0.1
* Fri Mar 11 2022 Unitedrpms Project <unitedrpms AT protonmail DOT com> 5.0-10
- Enabled AMF support
- Rebuilt for openh264
* Fri Feb 18 2022 Unitedrpms Project <unitedrpms AT protonmail DOT com> 5.0-9
- Enabled compatibility with ffmpeg-free
* Thu Feb 10 2022 Unitedrpms Project <unitedrpms AT protonmail DOT com> 5.0-8
- Enabled uavs3d
* Sat Jan 15 2022 Unitedrpms Project <unitedrpms AT protonmail DOT com> 5.0-7
- Updated to 5.0
* Fri Dec 03 2021 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.4.1-8
- Rebuilt for aom
* Wed Nov 10 2021 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.4.1-7
- Updated to 4.4.1
* Fri Oct 22 2021 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.4-10
- Rebuilt for kvazaar and libmysofa
- Updated to current commit stable
* Mon Aug 02 2021 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.4-9
- Rebuilt for x264
* Fri Jun 18 2021 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.4-8
- Updated to current commit stable
- Rebuilt for aom
* Fri May 07 2021 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.4-7
- Updated to 4.4
- Enabled svt-av1
* Mon Feb 15 2021 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3.2-7
- Updated to 4.3.2
* Thu Jan 28 2021 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3.1-19
- Rebuilt for libmysofa
* Wed Dec 30 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3.1-18
- Enable smbclient support F33-Rawhide
* Sun Dec 20 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3.1-17
- Updated to current commit stable
- Changes for vulkan and glslang
* Tue Dec 15 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3.1-16
- Rebuilt for dav1d
* Sun Dec 06 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3.1-14
- Enabled LV2
* Mon Nov 23 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3.1-13
- Rebuilt for x264
* Thu Nov 19 2020 Pavlo Rudyi <paulcarroty at riseup.net> - 4.3.1-12
- Enabled Vulkan
* Mon Aug 17 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3.1-10
- Rebuilt for dav1d
* Mon Aug 10 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3.1-8
- Rebuilt
* Mon Jul 13 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3.1-7
- Enabled libopenmpt
- Updated to 4.3.1
* Wed Jul 08 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3-10
- Rebuilt for aom
* Sat Jul 04 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3-9
- Rebuilt for x264
* Wed Jun 24 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3-8
- Rebuilt for libmysofa
* Tue Jun 23 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.3-7
- Updated to 4.3
* Sat May 30 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.3-9
- Rebuilt for x265
* Sun May 24 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.3-8
- Rebuilt for openh264 so bump
* Thu May 21 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.3-7
- Updated to 4.2.3
* Fri Apr 24 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.2-12
- Rebuilt for kvazaar
* Mon Mar 02 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.2-11
- Enabled vapoursynth
* Mon Feb 24 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.2-10
- Rebuilt for x265
* Thu Feb 06 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.2-9
- Rebuilt for libmysofa
* Fri Jan 10 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.2-8
- Rebuilt for libmysofa
* Wed Jan 01 2020 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.2-7
- Updated to 4.2.2
* Sun Dec 29 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.1-15
- Enabled vaapi
* Sun Dec 08 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.1-14
- Rebuilt for dav1d
- F31 Replaced libmfx by intel-mediasdk
* Sun Dec 01 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.1-13
- Rebuild for x265
* Thu Nov 28 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.1-12
- F32 Replaced libmfx by intel-mediasdk
* Tue Nov 26 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.1-11
- Rebuilt
* Mon Oct 14 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.1-10
- Rebuilt for dav1d
* Fri Sep 27 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.1-9
- Rebuilt for nv-codec-headers
* Mon Sep 16 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.1-8
- Rebuilt for libmysofa
* Wed Sep 11 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2.1-7
- Updated to 4.2.1
* Sat Aug 10 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2-8
- Enabled missed libjack
* Mon Aug 05 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.2-7
- Updated to 4.2
* Fri Aug 02 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1.4-9
- Rebuilt for x265
* Wed Jul 17 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1.4-8
- Enabled libmfx missed
* Thu Jul 11 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1.4-7
- Updated to 4.1.4-7
* Fri Jul 05 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1.3-13
- Rebuilt for openh264
* Tue Jun 25 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1.3-12
- Rebuilt for fdk-aac-free
* Tue Jun 25 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1.3-10
- Added fdk-aac-free as recommends
* Sat Jun 22 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1.3-9
- Rebuilt for x265
* Wed Jun 12 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1.3-8
- Enabled fdk-aac-free
* Sat Apr 06 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1.3-7
- Updated to 4.1.3-7
* Wed Mar 13 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1.1-9
- Rebuilt for x264
* Tue Feb 26 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1.1-8
- Rebuilt for vmaf
* Sun Feb 17 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1.1-7
- Updated to 4.1.1
* Thu Feb 07 2019 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1-9
- Rebuilt for x265
* Wed Dec 12 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1-8
- Rebuilt for dav1d
* Thu Dec 06 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.1-7
- Updated to 4.1-7
- Enabled support for dav1d
* Sat Nov 03 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.0.3-7
- Updated to 4.0.3-7
* Fri Oct 12 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.0.2-13
- Automatic Mass Rebuild
* Mon Oct 08 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.0.2-12
- Automatic Mass Rebuild
* Fri Oct 05 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.0.2-11
- Automatic Mass Rebuild
* Fri Sep 28 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.0.2-10
- Rebuilt for vid.stab and libaom-devel
* Thu Sep 13 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.0.2-9
- Enabled aom support
* Wed Jul 18 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.0.2-7
- Updated to 4.0.2-7
* Thu Jul 05 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.0.1-8
- Enabled libzvbi
* Sat Jun 16 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.0.1-7
- Updated to 4.0.1
* Sun May 27 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.0-9
- Automatic Mass Rebuild
* Fri Apr 20 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 4.0-7
- Updated to 4.0
- ffserver was removed
- Deprecate avfilter_link_get_channels(). Use av_buffersink_get_channels().
* Wed Mar 14 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.4.2-10
- Enabled missed alsa
- Updated to current commit in stable version
* Sat Feb 24 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.4.2-9
- Automatic Mass Rebuild
* Fri Feb 16 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.4.2-8
- Updated to stable release
* Tue Jan 30 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.4.2-7
- Updated to 3.4.2
* Mon Jan 29 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.4.1-11
- Updated to current commit in stable version
* Fri Jan 26 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.4.1-10
- Rebuilt for libcdio 2.0
* Tue Jan 16 2018 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.4.1-9
- Rebuilt for libva 2.0
* Tue Dec 19 2017 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.4.1-8
- Enabled vmaf
* Mon Dec 11 2017 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.4.1-7
- Updated to 3.4.1
* Wed Dec 06 2017 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.4-13
- Automatic Mass Rebuild
* Thu Nov 23 2017 David Va <davidva AT tutanota DOT com> 3.4-12
- Forces the buffers to be flushed after a drain has completed
* Tue Nov 21 2017 David Va <davidva AT tutanota DOT com> 3.4-11
- Patch for compatibility
* Fri Nov 17 2017 David Va <davidva AT tutanota DOT com> 3.4-10
- Enabled vid.stab
* Thu Nov 16 2017 David Va <davidva AT tutanota DOT com> 3.4-9
- Rebuilt
* Fri Nov 10 2017 David Va <davidva AT tutanota DOT com> 3.4-8
- Patch vc2enc_dwt: pad the temporary buffer by the slice size
- Patch forces the buffers to be flushed after a drain has completed
* Wed Oct 25 2017 David Va <davidva AT tutanota DOT com> 3.4-7
- Added support for libdrm, openh264, kvazaar, libmysofa and shine
* Mon Oct 16 2017 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.4-1
- Updated to 3.4
* Thu Oct 05 2017 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.3.4-4
- Automatic Mass Rebuild
* Sat Sep 30 2017 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.3.4-3
- Automatic Mass Rebuild
* Wed Sep 13 2017 David Va <davidva AT tutanota DOT com> 3.3.4-2
- Updated to 3.3.4-2
* Fri Jul 28 2017 David Va <davidva AT tutanota DOT com> 3.3.3-3
- Updated to 3.3.3-3
* Thu Jun 15 2017 David Vásquez <davidva AT tutanota DOT com> 3.3.2-3
- Rebuilt for libbluray
* Fri Jun 09 2017 David Vásquez <davidva AT tutanota DOT com> 3.3.2-2
- Updated to 3.3.2-2
* Wed May 24 2017 David Vásquez <davidva AT tutanota DOT com> 3.3.1-2
- Updated to 3.3.1-2
* Tue Apr 25 2017 David Vásquez <davidva AT tutanota DOT com> - 3.3-2
- Rebuilt, for ffmpeg libs issues f24
* Tue Apr 18 2017 Unitedrpms Project <unitedrpms AT protonmail DOT com> 3.3-1
- Automatic Mass Rebuild
- Updated to 3.3
* Sat Mar 18 2017 David Vásquez <davidva AT tutanota DOT com> - 3.2.4-4
- Rebuilt thanks to libbluray (sarcasm)
* Mon Feb 20 2017 David Vásquez <davidva AT tutanota DOT com> - 3.2.4-2
- Updated to 3.2.4-2
* Sun Nov 13 2016 Pavlo Rudyi <paulcarroty at riseup.net> - 3.2-1
- Update to 3.2
* Tue Oct 4 2016 David Vásquez <davidva AT tutanota DOT com> - 3.1.4-1
- Updated to 3.1.4
* Wed Aug 24 2016 David Vásquez <davidva AT tutanota DOT com> - 3.1.2-1
- Updated to 3.1.2
* Fri Jul 15 2016 David Vásquez <davidva AT tutanota DOT com> - 3.1.1-1
- Updated to 3.1.1
* Wed Jun 29 2016 David Vásquez <davidva AT tutanota DOT com> - 3.1-1
- Updated to 3.1
* Sat Jun 25 2016 Pavlo Rudyi <paulcarroty at riseup.net> - 3.0.2-1
- Update to 3.0.2
* Fri May 06 2016 David Vásquez <davidva AT tutanota DOT com> - 3.0.1-2
- Conditional build for opencv
* Tue Mar 29 2016 David Vásquez <davidva AT tutanota DOT com> - 3.0.1-1
- Updated to 3.0.1
* Mon Feb 22 2016 David Vasquez <davidva[AT]tutanota [DOT] com> - 3.0-1
- Updated to 3.0
* Mon Jul 13 2015 David Vasquez <davidva[AT]tutanota [DOT] com> - 2.8-1
- Updated to 2.8
* Mon Jul 13 2015 A anonymous friend <makerpm at anon.com> - 2.7.1-1
- Updated to 2.7.1
* Mon Mar 23 2015 A anonymous friend <makerpm at anon.com> - 2.6.1-1
- Updated to 2.6.1
* Sun Feb 15 2015 Julian Sikorski <[email protected]> - 2.4.7-1
- Updated to 2.4.7
* Sun Feb 01 2015 Dominik Mierzejewski <rpm at greysector.net> - 2.4.6-3
- enable LADSPA support (rfbz#3134)
* Sun Feb 01 2015 Dominik Mierzejewski <rpm at greysector.net> - 2.4.6-2
- enable OpenCL support
- BR texinfo instead of texi2html to reduce BRs by half
- drop support for building on SPARC (no longer a Fedora Secondary Arch)
- move libavdevice to a subpackage (rfbz#3075)
* Wed Jan 14 2015 Julian Sikorski <[email protected]> - 2.4.6-1
- Updated to 2.4.6
* Sun Dec 21 2014 Julian Sikorski <[email protected]> - 2.4.5-1
- Updated to 2.4.5
* Thu Dec 18 2014 Dominik Mierzejewski <rpm at greysector.net> - 2.4.4-2
- enable support for libx265 by default (rfbz#3421, patch by Nerijus Baliūnas)
* Mon Dec 01 2014 Julian Sikorski <[email protected]> - 2.4.4-1
- Updated to 2.4.4
* Tue Nov 04 2014 Nicolas Chauvet <[email protected]> - 2.4.3-2
- Rebuilt for vaapi 0.36
* Sun Nov 02 2014 Julian Sikorski <[email protected]> - 2.4.3-1
- Updated to 2.4.3
* Sun Oct 19 2014 Sérgio Basto <[email protected]> - 2.4.2-1
- Update to ffmpeg-2.4.2
* Fri Oct 03 2014 Julian Sikorski <[email protected]> - 2.3.4-1
- Updated to 2.3.4
* Sat Sep 27 2014 kwizart <[email protected]> - 2.3.3-3
- Rebuild back to ffmpeg 2.3x
* Sat Sep 13 2014 Nicolas Chauvet <[email protected]> - 2.3.3-2
- Disable libcelt by default - rfbz#3359
* Tue Sep 02 2014 Julian Sikorski <[email protected]> - 2.3.3-1
- Updated to 2.3.3
* Tue Aug 12 2014 Julian Sikorski <[email protected]> - 2.3.2-1
- Updated to 2.3.2
* Sun Aug 03 2014 Julian Sikorski <[email protected]> - 2.3.1-1
- Updated to 2.3.1
- README → README.md
* Tue Jul 15 2014 Julian Sikorski <[email protected]> - 2.2.5-1
- Updated to 2.2.5
* Tue Jul 08 2014 Julian Sikorski <[email protected]> - 2.2.4-1
- Updated to 2.2.4
* Wed Jun 04 2014 Julian Sikorski <[email protected]> - 2.2.3-1
- Updated to 2.2.3
* Mon May 05 2014 Julian Sikorski <[email protected]> - 2.2.2-1
- Updated to 2.2.2
* Fri Apr 18 2014 Nicolas Chauvet <[email protected]> - 2.2.1-1
- Update to 2.2.1
* Mon Mar 24 2014 Julian Sikorski <[email protected]> - 2.2-1
- Updated to 2.2
* Fri Mar 21 2014 Julian Sikorski <[email protected]> - 2.1.4-4
- Rebuilt for libass-0.10.2
* Tue Mar 18 2014 Julian Sikorski <[email protected]> - 2.1.4-3
- Rebuilt for x264
* Thu Mar 06 2014 Nicolas Chauvet <[email protected]> - 2.1.4-2
- Rebuilt for x264
* Tue Feb 25 2014 Julian Sikorski <[email protected]> - 2.1.4-1
- Updated to 2.1.4
* Thu Jan 16 2014 Julian Sikorski <[email protected]> - 2.1.3-1
- Updated to 2.1.3
* Wed Nov 20 2013 Nicolas Chauvet <[email protected]> - 2.1.1-1
- Update to 2.1.1
* Tue Oct 29 2013 Julian Sikorski <[email protected]> - 2.1-1
- Updated to 2.1
* Tue Oct 22 2013 Nicolas Chauvet <[email protected]> - 2.0.2-2
- Rebuilt for x264
* Wed Oct 09 2013 Julian Sikorski <[email protected]> - 2.0.2-1
- Updated to 2.0.2
* Mon Sep 30 2013 Nicolas Chauvet <[email protected]> - 2.0.1-3
- Rebuilt
* Tue Aug 27 2013 Nicolas Chauvet <[email protected]> - 2.0.1-2
- Enable avresample as noticed by Xavier Bachelot
* Tue Aug 13 2013 Nicolas Chauvet <[email protected]> - 2.0.1-1
- Update to 2.0.1
* Thu Aug 01 2013 Julian Sikorski <[email protected]> - 2.0-1
- Updated to 2.0
- Dropped the no longer needed bogus man dir work-around
* Thu Aug 01 2013 Julian Sikorski <[email protected]> - 1.2.2-1
- Updated to 1.2.2
* Sat Jul 20 2013 Nicolas Chauvet <[email protected]> - 1.2.1-7
- Rebuilt for x264
* Tue Jul 02 2013 Dominik Mierzejewski <rpm at greysector.net> - 1.2.1-6
- fix building with libcdio
* Mon Jul 01 2013 Dominik Mierzejewski <rpm at greysector.net> - 1.2.1-5
- build with soxr support enabled (rfbz#2853)
* Thu Jun 27 2013 Nicolas Chauvet <[email protected]> - 1.2.1-4
- Reverse the logic for neon on arm
* Wed Jun 19 2013 Nicolas Chauvet <[email protected]> - 1.2.1-3
- Enable neon on armv7hnl
- Enable thumb on all arm but armv6hl
* Tue May 14 2013 Julian Sikorski <[email protected]> - 1.2.1-1
- Updated to 1.2.1
* Sun May 05 2013 Julian Sikorski <[email protected]> - 1.2-2
- Rebuilt for x264-0.130
* Mon Mar 18 2013 Julian Sikorski <[email protected]> - 1.2-1
- Updated to 1.2
* Mon Mar 18 2013 Julian Sikorski <[email protected]> - 1.1.4-1
- Updated to 1.1.4
* Sun Mar 10 2013 Nicolas Chauvet <[email protected]> - 1.1.3-1