mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
This adds a new variant of the metadata storage in CodedFrame for audio frames, called CodedAudioFrameData.
18 lines
229 B
C++
18 lines
229 B
C++
/*
|
|
* Copyright (c) 2025, Gregory Bertilson <gregory@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Media {
|
|
|
|
class CodedAudioFrameData {
|
|
public:
|
|
CodedAudioFrameData()
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|