Babel  1
The voip software that only works on your local network
Loading...
Searching...
No Matches
Packet.hpp
Go to the documentation of this file.
1/*
2** EPITECH PROJECT, 2024
3** record_compress_decompress_play
4** File description:
5** Packet.hpp
6*/
7
13#pragma once
14
15#include <vector>
16
17namespace Compressor
18{
22 struct Packet {
23 unsigned int size = 0;
24 unsigned int maxPacketSize = 4000;
25 unsigned int sampleRate = 44100;
26 std::vector<unsigned char> data;
27 };
28}
Structure representing a packet of compressed audio data.
Definition Packet.hpp:22
unsigned int sampleRate
Definition Packet.hpp:25
unsigned int maxPacketSize
Definition Packet.hpp:24
unsigned int size
Definition Packet.hpp:23
std::vector< unsigned char > data
Definition Packet.hpp:26