Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
3058872c
Commit
3058872c
authored
May 09, 2015
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ppc: Clarify and extend the cpuid check
Add POWER entries.
parent
baa94563
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
4 deletions
+19
-4
cpu.c
libavutil/ppc/cpu.c
+19
-4
No files found.
libavutil/ppc/cpu.c
View file @
3058872c
...
@@ -94,15 +94,30 @@ out:
...
@@ -94,15 +94,30 @@ out:
close
(
fd
);
close
(
fd
);
return
ret
;
return
ret
;
#elif CONFIG_RUNTIME_CPUDETECT
#elif CONFIG_RUNTIME_CPUDETECT
#define PVR_G4_7400 0x000C
#define PVR_G5_970 0x0039
#define PVR_G5_970FX 0x003C
#define PVR_G5_970MP 0x0044
#define PVR_G5_970GX 0x0045
#define PVR_POWER6 0x003E
#define PVR_POWER7 0x003F
#define PVR_POWER8 0x004B
#define PVR_CELL_PPU 0x0070
int
proc_ver
;
int
proc_ver
;
// Support of mfspr PVR emulation added in Linux 2.6.17.
// Support of mfspr PVR emulation added in Linux 2.6.17.
__asm__
volatile
(
"mfspr %0, 287"
:
"=r"
(
proc_ver
));
__asm__
volatile
(
"mfspr %0, 287"
:
"=r"
(
proc_ver
));
proc_ver
>>=
16
;
proc_ver
>>=
16
;
if
(
proc_ver
&
0x8000
||
if
(
proc_ver
&
0x8000
||
proc_ver
==
0x000c
||
proc_ver
==
PVR_G4_7400
||
proc_ver
==
0x0039
||
proc_ver
==
0x003c
||
proc_ver
==
PVR_G5_970
||
proc_ver
==
0x0044
||
proc_ver
==
0x0045
||
proc_ver
==
PVR_G5_970FX
||
proc_ver
==
0x0070
)
proc_ver
==
PVR_G5_970MP
||
proc_ver
==
PVR_G5_970GX
||
proc_ver
==
PVR_POWER6
||
proc_ver
==
PVR_POWER7
||
proc_ver
==
PVR_POWER8
||
proc_ver
==
PVR_CELL_PPU
)
return
AV_CPU_FLAG_ALTIVEC
;
return
AV_CPU_FLAG_ALTIVEC
;
return
0
;
return
0
;
#else
#else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment