1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-11-30 04:39:03 +01:00
libtgvoip/video/VideoFEC.h
Grishka f7ff6409df I tried so hard, and got so far
But in the end, it doesn't even matter

😭
2019-04-15 02:43:10 +03:00

26 lines
410 B
C++

//
// Created by Grishka on 24/03/2019.
//
#ifndef LIBTGVOIP_VIDEOFEC_H
#define LIBTGVOIP_VIDEOFEC_H
#include "../Buffers.h"
#include <vector>
namespace tgvoip{
namespace video{
class ParityFEC{
public:
static Buffer Encode(std::vector<Buffer>& packets);
static Buffer Decode(std::vector<Buffer>& dataPackets, Buffer& fecPacket);
};
class CM256FEC{
};
}
}
#endif //LIBTGVOIP_VIDEOFEC_H