diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-07-01 22:38:18 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-01 22:38:18 -0400 |
| commit | 971b89b979cb3b903263234f3a6fdd2bceb03cbe (patch) | |
| tree | d32c8012765d9d94c57292ddfac3f84ec247a6e1 /src/video_core/host1x/codecs/codec.cpp | |
| parent | 7f5ccd015137662247d39b723d120a18f380fa3e (diff) | |
| parent | 1a46823ec59b0ad4556e494c0488d5a8160aa19b (diff) | |
Merge pull request #10970 from Morph1984/thing
general: Misc changes that did not deserve their own PRs
Diffstat (limited to 'src/video_core/host1x/codecs/codec.cpp')
| -rw-r--r-- | src/video_core/host1x/codecs/codec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/host1x/codecs/codec.cpp b/src/video_core/host1x/codecs/codec.cpp index cd6a3a9b8..da07a556f 100644 --- a/src/video_core/host1x/codecs/codec.cpp +++ b/src/video_core/host1x/codecs/codec.cpp @@ -290,7 +290,7 @@ void Codec::Decode() { return vp9_decoder->GetFrameBytes(); default: ASSERT(false); - return std::vector<u8>{}; + return std::span<const u8>{}; } }(); AVPacketPtr packet{av_packet_alloc(), AVPacketDeleter}; |
