Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/multimedia/avidemux/files/ffmpeg_fix_build_on_armv7.patch
16462 views
1
--- libavcodec/arm/mlpdsp_armv5te.S.orig 2024-11-20 11:30:59.957498000 +0000
2
+++ libavcodec/arm/mlpdsp_armv5te.S 2024-11-20 11:31:40.969226000 +0000
3
@@ -229,7 +229,7 @@
4
.endif
5
6
// Begin loop
7
-01:
8
+1:
9
.if TOTAL_TAPS == 0
10
// Things simplify a lot in this case
11
// In fact this could be pipelined further if it's worth it...
12
@@ -241,7 +241,7 @@
13
str ST0, [PST, #-4]!
14
str ST0, [PST, #4 * (MAX_BLOCKSIZE + MAX_FIR_ORDER)]
15
str ST0, [PSAMP], #4 * MAX_CHANNELS
16
- bne 01b
17
+ bne 1b
18
.else
19
.if \fir_taps & 1
20
.set LOAD_REG, 1
21
@@ -333,7 +333,7 @@
22
str ST3, [PST, #-4]!
23
str ST2, [PST, #4 * (MAX_BLOCKSIZE + MAX_FIR_ORDER)]
24
str ST3, [PSAMP], #4 * MAX_CHANNELS
25
- bne 01b
26
+ bne 1b
27
.endif
28
b 99f
29
30
31