summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/hwopus.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-02-21audio: split IHardwarweOpusDecoder, move IHardwareOpusDecoderManagerLiam1-502/+0
2023-12-25service: fetch objects from the client handle tableLiam1-12/+4
2023-09-16Reimplement HardwareOpusKelebek11-318/+404
2023-08-30hwopus: Implement GetWorkBufferSizeExExFearlessTobi1-1/+5
Allows Sea of Stars to boot. Fixes https://github.com/yuzu-emu/yuzu/issues/11415.
2023-08-27hwopus: Implement OpenHardwareOpusDecoderForMultiStreamEx and DecodeInterleavedForMultiStreamFearlessTobi1-2/+47
Allows MLB The Show 22 to boot. Fixes https://github.com/yuzu-emu/yuzu/issues/7911.
2023-07-01general: Use ScratchBuffer where possibleMorph1-4/+5
2023-06-22Remove memory allocations in some hot pathsKelebek11-4/+5
2023-03-01service: move hle_ipc from kernelLiam1-11/+11
2023-02-25core: Update service function tables to 16.0.0+Narr the Reg1-0/+2
2023-02-14remove static from pointer sized or smaller types for aesthetics, change constexpr static to static constexpr for consistencyarades791-1/+1
Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-14add static lifetime to constexpr values to force compile time evaluation where possiblearades791-1/+1
Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-03Revert "Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-span"ameerj1-1/+1
This reverts commit 25fc5c0e1158cb8e81cbc769b24ad84032a1fbfd, reversing changes made to af20e25081f97d55b451606c87922e2b49f0d363.
2023-02-02Revert "hle_ipc: Use std::span to avoid heap allocations/copies when calling ReadBuffer"liamwhite1-1/+1
2022-12-29hle_ipc: Rename ReadBufferSpan to ReadBufferameerj1-2/+2
2022-12-25service: Use ReadBufferSpan where it is trivial to do soameerj1-3/+3
2022-11-23service: Make use of buffer element count helpersLioncash1-1/+1
2022-09-16core: implement HwOpus GetWorkBufferSizeForMultiStreamExFengChen1-1/+27
2022-07-22Project AndioKelebek11-1/+1
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2021-12-02general: Replace high_resolution_clock with steady_clockMorph1-2/+2
On some OSes, high_resolution_clock is an alias to system_clock and is not monotonic in nature. Replace this with steady_clock.
2021-10-07service: Reduce header include overheadMorph1-1/+0
2021-06-26hle: service: hwopus: OpenHardwareOpusDecoderEx: Remove unused buffer size.bunnei1-1/+30
2021-06-25hle: service: hwopus: Implement GetWorkBufferSizeEx and OpenHardwareOpusDecoderEx.bunnei1-4/+12
- This is used by the latest update of Doom Eternal.
2021-06-02general: Replace RESULT_UNKNOWN with ResultUnknownMorph1-2/+2
Transition to PascalCase for result names.
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-3/+3
Transition to PascalCase for result names.
2021-05-16core: Make variable shadowing a compile-time errorLioncash1-4/+4
Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
2021-04-07hwopus: Update to 12.xMorph1-0/+4
2020-11-27service: Eliminate usages of the global system instanceLioncash1-4/+5
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
2020-10-21Revert "core: Fix clang build"bunnei1-15/+14
2020-10-18core: Fix clang buildLioncash1-14/+15
Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
2020-08-03ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer (#4465)David1-1/+1
* ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer With the support of C++20, we can use concepts to deduce if a type is an STL container or not. * More agressive concept for stl containers * Add -fconcepts * Move to common namespace * Add Common::IsBaseOf
2020-02-11update hwopus DecodeInterleaved for FW 7.0.0+makigumo1-2/+4
trivial change, see https://switchbrew.org/wiki/Audio_services#IHardwareOpusDecoder
2019-11-12service: Resolve sign conversion errorsLioncash1-2/+2
These are fairly trivial to resolve and most of the changes entail using RESULT_UNKNOWN over ResultCode(-1).
2019-03-11hwopus: Leverage multistream API for decoding regular Opus packetsLioncash1-34/+48
After doing a little more reading up on the Opus codec, it turns out that the multistream API that is part of libopus can handle regular packets. Regular packets are just a degenerate case of multistream Opus packets, and all that's necessary is to pass the number of streams as 1 and provide a basic channel mapping, then everything works fine for that case. This allows us to get rid of the need to use both APIs in the future when implementing multistream variants in a follow-up PR, greatly simplifying the code that needs to be written.
2019-03-07service/audio/hwopus: Move decoder state to its own classLioncash1-50/+85
Moves the non-multistream specific state to its own class. This will be necessary to support the multistream variants of opus decoding.
2019-03-07service/audio/hwopus: Provide a name for the second word of OpusPacketHeaderLioncash1-2/+4
This indicates the entropy coder's final range.
2019-03-07service/audio/hwopus: Move Opus packet header out of the IHardwareOpusDecoderManagerLioncash1-17/+17
This will be utilized by more than just that class in the future. This also renames it from OpusHeader to OpusPacketHeader to be more specific about what kind of header it is.
2019-03-07service/audio/hwopus: Enclose internals in an anonymous namespaceLioncash1-2/+3
Makes it impossible to violate the ODR, as well as providing a place for future changes.
2019-01-30hwopus: Implement DecodeInterleavedLioncash1-4/+35
This functions almost identically to DecodeInterleavedWithPerfOld, however this function also has the ability to reset the decoder context. This is documented as a potentially desirable thing in the libopus manual in some circumstances as it says for the OPUS_RESET_STATE ctl: "This should be called when switching streams in order to prevent the back to back decoding from giving different result from one at a time decoding."
2019-01-30hwopus: Deduplicate the decoding code within DecodeInterleavedOld and DecodeInterleavedWithPerfOldLioncash1-19/+14
Keeps the logic in one spot for use by both functions.
2019-01-30hwopus: Replace std::optional<std::reference_wrapper<u64>> with u64*Lioncash1-9/+6
This doesn't really offer anything over the use of a direct pointer, so we can just use that instead.
2019-01-30hwopus: Mark local variables as const where applicableLioncash1-8/+16
Makes non-mutable state more explicit.
2019-01-30hwopus: Fill in the rest of the unknown service function namesLioncash1-9/+11
Filled in via information provided by SwitchBrew.
2018-11-26Fixed hwopus compile errorDavid Marcec1-1/+1
2018-11-26Improved error messages in AM, HwOpus and NvMapDavid Marcec1-8/+16
2018-11-26Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec1-7/+25
2018-11-17hwopus: DecodeInterleavedWithPerformance: Fix ordering of output parameters.bunnei1-1/+1
- Fixes audio issues with Pokemon: Let's Go Pikachu & Eevee.
2018-11-02Fixed incorrect hwopus assertDavid Marcec1-1/+1
2018-10-11HwOpus, Implemented DecodeInterleavedWithPerformanceDavid Marcec1-3/+34
Used by sonic ages
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi1-3/+3
2018-09-12service/audio: Replace includes with forward declarations where applicableLioncash1-0/+5
A few headers were including other headers when a forward declaration can be used instead, allowing the include to be moved to the cpp file.
2018-09-11hle/service: Default constructors and destructors in the cpp file where applicableLioncash1-0/+2
When a destructor isn't defaulted into a cpp file, it can cause the use of forward declarations to seemingly fail to compile for non-obvious reasons. It also allows inlining of the construction/destruction logic all over the place where a constructor or destructor is invoked, which can lead to code bloat. This isn't so much a worry here, given the services won't be created and destroyed frequently. The cause of the above mentioned non-obvious errors can be demonstrated as follows: ------- Demonstrative example, if you know how the described error happens, skip forwards ------- Assume we have the following in the header, which we'll call "thing.h": \#include <memory> // Forward declaration. For example purposes, assume the definition // of Object is in some header named "object.h" class Object; class Thing { public: // assume no constructors or destructors are specified here, // or the constructors/destructors are defined as: // // Thing() = default; // ~Thing() = default; // // ... Some interface member functions would be defined here private: std::shared_ptr<Object> obj; }; If this header is included in a cpp file, (which we'll call "main.cpp"), this will result in a compilation error, because even though no destructor is specified, the destructor will still need to be generated by the compiler because std::shared_ptr's destructor is *not* trivial (in other words, it does something other than nothing), as std::shared_ptr's destructor needs to do two things: 1. Decrement the shared reference count of the object being pointed to, and if the reference count decrements to zero, 2. Free the Object instance's memory (aka deallocate the memory it's pointing to). And so the compiler generates the code for the destructor doing this inside main.cpp. Now, keep in mind, the Object forward declaration is not a complete type. All it does is tell the compiler "a type named Object exists" and allows us to use the name in certain situations to avoid a header dependency. So the compiler needs to generate destruction code for Object, but the compiler doesn't know *how* to destruct it. A forward declaration doesn't tell the compiler anything about Object's constructor or destructor. So, the compiler will issue an error in this case because it's undefined behavior to try and deallocate (or construct) an incomplete type and std::shared_ptr and std::unique_ptr make sure this isn't the case internally. Now, if we had defaulted the destructor in "thing.cpp", where we also include "object.h", this would never be an issue, as the destructor would only have its code generated in one place, and it would be in a place where the full class definition of Object would be visible to the compiler. ---------------------- End example ---------------------------- Given these service classes are more than certainly going to change in the future, this defaults the constructors and destructors into the relevant cpp files to make the construction and destruction of all of the services consistent and unlikely to run into cases where forward declarations are indirectly causing compilation errors. It also has the plus of avoiding the need to rebuild several services if destruction logic changes, since it would only be necessary to recompile the single cpp file.
2018-07-31Implemented various hwopus functions (#853)David1-5/+130
2018-07-03Rename logging macro back to LOG_*James Rowe1-1/+1
2018-06-25Service/Audio: add hwopus service, stub GetWorkBufferSize functionmailwl1-0/+29