Nagram/TMessagesProj/jni/libtgvoip3/video/VideoFEC.h
2020-04-24 12:21:58 +03:00

32 lines
444 B
C++

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