index
:
anonymous/yuzu
master
yuzu is the world's most popular, open-source, Nintendo Switch emulator — started by the creators of Citra. It is written in C++ with portability in mind,
mirror
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
core
/
hle
/
service
/
audio
/
hwopus.cpp
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2024-02-21
audio: split IHardwarweOpusDecoder, move IHardwareOpusDecoderManager
Liam
1
-502
/
+0
2023-12-25
service: fetch objects from the client handle table
Liam
1
-12
/
+4
2023-09-16
Reimplement HardwareOpus
Kelebek1
1
-318
/
+404
2023-08-30
hwopus: Implement GetWorkBufferSizeExEx
FearlessTobi
1
-1
/
+5
2023-08-27
hwopus: Implement OpenHardwareOpusDecoderForMultiStreamEx and DecodeInterleavedForMultiStream
FearlessTobi
1
-2
/
+47
2023-07-01
general: Use ScratchBuffer where possible
Morph
1
-4
/
+5
2023-06-22
Remove memory allocations in some hot paths
Kelebek1
1
-4
/
+5
2023-03-01
service: move hle_ipc from kernel
Liam
1
-11
/
+11
2023-02-25
core: Update service function tables to 16.0.0+
Narr the Reg
1
-0
/
+2
2023-02-14
remove static from pointer sized or smaller types for aesthetics, change constexpr static to static constexpr for consistency
arades79
1
-1
/
+1
2023-02-14
add static lifetime to constexpr values to force compile time evaluation where possible
arades79
1
-1
/
+1
2023-02-03
Revert "Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-span"
ameerj
1
-1
/
+1
2023-02-02
Revert "hle_ipc: Use std::span to avoid heap allocations/copies when calling ReadBuffer"
liamwhite
1
-1
/
+1
2022-12-29
hle_ipc: Rename ReadBufferSpan to ReadBuffer
ameerj
1
-2
/
+2
2022-12-25
service: Use ReadBufferSpan where it is trivial to do so
ameerj
1
-3
/
+3
2022-11-23
service: Make use of buffer element count helpers
Lioncash
1
-1
/
+1
2022-09-16
core: implement HwOpus GetWorkBufferSizeForMultiStreamEx
FengChen
1
-1
/
+27
2022-07-22
Project Andio
Kelebek1
1
-1
/
+1
2022-04-23
general: Convert source file copyright comments over to SPDX
Morph
1
-3
/
+2
2021-12-02
general: Replace high_resolution_clock with steady_clock
Morph
1
-2
/
+2
2021-10-07
service: Reduce header include overhead
Morph
1
-1
/
+0
2021-06-26
hle: service: hwopus: OpenHardwareOpusDecoderEx: Remove unused buffer size.
bunnei
1
-1
/
+30
2021-06-25
hle: service: hwopus: Implement GetWorkBufferSizeEx and OpenHardwareOpusDecoderEx.
bunnei
1
-4
/
+12
2021-06-02
general: Replace RESULT_UNKNOWN with ResultUnknown
Morph
1
-2
/
+2
2021-06-02
general: Replace RESULT_SUCCESS with ResultSuccess
Morph
1
-3
/
+3
2021-05-16
core: Make variable shadowing a compile-time error
Lioncash
1
-4
/
+4
2021-04-07
hwopus: Update to 12.x
Morph
1
-0
/
+4
2020-11-27
service: Eliminate usages of the global system instance
Lioncash
1
-4
/
+5
2020-10-21
Revert "core: Fix clang build"
bunnei
1
-15
/
+14
2020-10-18
core: Fix clang build
Lioncash
1
-14
/
+15
2020-08-03
ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer (#4465)
David
1
-1
/
+1
2020-02-11
update hwopus DecodeInterleaved for FW 7.0.0+
makigumo
1
-2
/
+4
2019-11-12
service: Resolve sign conversion errors
Lioncash
1
-2
/
+2
2019-03-11
hwopus: Leverage multistream API for decoding regular Opus packets
Lioncash
1
-34
/
+48
2019-03-07
service/audio/hwopus: Move decoder state to its own class
Lioncash
1
-50
/
+85
2019-03-07
service/audio/hwopus: Provide a name for the second word of OpusPacketHeader
Lioncash
1
-2
/
+4
2019-03-07
service/audio/hwopus: Move Opus packet header out of the IHardwareOpusDecoderManager
Lioncash
1
-17
/
+17
2019-03-07
service/audio/hwopus: Enclose internals in an anonymous namespace
Lioncash
1
-2
/
+3
2019-01-30
hwopus: Implement DecodeInterleaved
Lioncash
1
-4
/
+35
2019-01-30
hwopus: Deduplicate the decoding code within DecodeInterleavedOld and DecodeInterleavedWithPerfOld
Lioncash
1
-19
/
+14
2019-01-30
hwopus: Replace std::optional<std::reference_wrapper<u64>> with u64*
Lioncash
1
-9
/
+6
2019-01-30
hwopus: Mark local variables as const where applicable
Lioncash
1
-8
/
+16
2019-01-30
hwopus: Fill in the rest of the unknown service function names
Lioncash
1
-9
/
+11
2018-11-26
Fixed hwopus compile error
David Marcec
1
-1
/
+1
2018-11-26
Improved error messages in AM, HwOpus and NvMap
David Marcec
1
-8
/
+16
2018-11-26
Changed logging to be "Log before execution", Added more error logging, all services should now log on some level
David Marcec
1
-7
/
+25
2018-11-17
hwopus: DecodeInterleavedWithPerformance: Fix ordering of output parameters.
bunnei
1
-1
/
+1
2018-11-02
Fixed incorrect hwopus assert
David Marcec
1
-1
/
+1
2018-10-11
HwOpus, Implemented DecodeInterleavedWithPerformance
David Marcec
1
-3
/
+34
2018-09-15
Port #4182 from Citra: "Prefix all size_t with std::"
fearlessTobi
1
-3
/
+3
2018-09-12
service/audio: Replace includes with forward declarations where applicable
Lioncash
1
-0
/
+5
2018-09-11
hle/service: Default constructors and destructors in the cpp file where applicable
Lioncash
1
-0
/
+2
2018-07-31
Implemented various hwopus functions (#853)
David
1
-5
/
+130
2018-07-03
Rename logging macro back to LOG_*
James Rowe
1
-1
/
+1
2018-06-25
Service/Audio: add hwopus service, stub GetWorkBufferSize function
mailwl
1
-0
/
+29