mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-21 16:58:58 +00:00
LibMedia: Move VideoSampleData out of the Video namespace
This commit is contained in:
parent
8848ee775b
commit
3cc1187036
Notes:
sideshowbarker
2024-07-16 17:12:03 +09:00
Author: https://github.com/Zaggy1024
Commit: 3cc1187036
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/230
Reviewed-by: https://github.com/ADKaster
4 changed files with 6 additions and 5 deletions
|
@ -8,13 +8,14 @@
|
|||
|
||||
#include <AK/ByteBuffer.h>
|
||||
#include <AK/Time.h>
|
||||
#include <LibMedia/Video/VideoSampleData.h>
|
||||
|
||||
#include "VideoSampleData.h"
|
||||
|
||||
namespace Media {
|
||||
|
||||
class Sample final {
|
||||
public:
|
||||
using AuxiliaryData = Variant<Video::VideoSampleData>;
|
||||
using AuxiliaryData = Variant<VideoSampleData>;
|
||||
|
||||
Sample(Duration timestamp, ReadonlyBytes data, AuxiliaryData auxiliary_data)
|
||||
: m_timestamp(timestamp)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue