mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:12:43 +00:00 
			
		
		
		
	 5e1499d104
			
		
	
	
		5e1499d104
		
	
	
	
	
		
			
			This commit un-deprecates DeprecatedString, and repurposes it as a byte
string.
As the null state has already been removed, there are no other
particularly hairy blockers in repurposing this type as a byte string
(what it _really_ is).
This commit is auto-generated:
  $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \
    Meta Ports Ladybird Tests Kernel)
  $ perl -pie 's/\bDeprecatedString\b/ByteString/g;
    s/deprecated_string/byte_string/g' $xs
  $ clang-format --style=file -i \
    $(git diff --name-only | grep \.cpp\|\.h)
  $ gn format $(git ls-files '*.gn' '*.gni')
		
	
			
		
			
				
	
	
		
			64 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2021, kleines Filmröllchen <filmroellchen@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/ByteString.h>
 | |
| #include <AK/FixedArray.h>
 | |
| #include <AK/OwnPtr.h>
 | |
| #include <AK/RefPtr.h>
 | |
| #include <AK/Span.h>
 | |
| #include <AK/StringView.h>
 | |
| #include <LibAudio/Loader.h>
 | |
| #include <LibAudio/RIFFTypes.h>
 | |
| 
 | |
| namespace Audio {
 | |
| 
 | |
| // Loader for the WAVE (file extension .wav) uncompressed audio file format.
 | |
| // WAVE uses the Microsoft RIFF container.
 | |
| // Original RIFF Spec, without later extensions: https://www.aelius.com/njh/wavemetatools/doc/riffmci.pdf
 | |
| // More concise WAVE information plus various spec links: http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/WAVE.html
 | |
| class WavLoaderPlugin : public LoaderPlugin {
 | |
| public:
 | |
|     explicit WavLoaderPlugin(NonnullOwnPtr<SeekableStream> stream);
 | |
| 
 | |
|     static bool sniff(SeekableStream& stream);
 | |
|     static ErrorOr<NonnullOwnPtr<LoaderPlugin>, LoaderError> create(NonnullOwnPtr<SeekableStream>);
 | |
| 
 | |
|     virtual ErrorOr<Vector<FixedArray<Sample>>, LoaderError> load_chunks(size_t samples_to_read_from_input) override;
 | |
| 
 | |
|     virtual MaybeLoaderError reset() override { return seek(0); }
 | |
| 
 | |
|     // sample_index 0 is the start of the raw audio sample data
 | |
|     // within the file/stream.
 | |
|     virtual MaybeLoaderError seek(int sample_index) override;
 | |
| 
 | |
|     virtual int loaded_samples() override { return static_cast<int>(m_loaded_samples); }
 | |
|     virtual int total_samples() override { return static_cast<int>(m_total_samples); }
 | |
|     virtual u32 sample_rate() override { return m_sample_rate; }
 | |
|     virtual u16 num_channels() override { return m_num_channels; }
 | |
|     virtual ByteString format_name() override { return "RIFF WAVE (.wav)"; }
 | |
|     virtual PcmSampleFormat pcm_format() override { return m_sample_format; }
 | |
| 
 | |
| private:
 | |
|     MaybeLoaderError parse_header();
 | |
|     MaybeLoaderError load_wav_info_block(Vector<RIFF::Chunk> info_chunks);
 | |
| 
 | |
|     LoaderSamples samples_from_pcm_data(ReadonlyBytes data, size_t samples_to_read) const;
 | |
|     template<typename SampleReader>
 | |
|     MaybeLoaderError read_samples_from_stream(Stream& stream, SampleReader read_sample, FixedArray<Sample>& samples) const;
 | |
| 
 | |
|     u32 m_sample_rate { 0 };
 | |
|     u16 m_num_channels { 0 };
 | |
|     PcmSampleFormat m_sample_format;
 | |
|     size_t m_byte_offset_of_data_samples { 0 };
 | |
| 
 | |
|     size_t m_loaded_samples { 0 };
 | |
|     size_t m_total_samples { 0 };
 | |
| };
 | |
| 
 | |
| }
 |