ffconv/ffcpp/Packet.cpp

11 lines
112 B
C++

#include "Packet.h"
namespace ffcpp {
Packet::Packet() {
_packet.data = nullptr;
_packet.size = 0;
}
}