11 lines
112 B
C++
11 lines
112 B
C++
#include "Packet.h"
|
|
|
|
namespace ffcpp {
|
|
|
|
Packet::Packet() {
|
|
_packet.data = nullptr;
|
|
_packet.size = 0;
|
|
}
|
|
|
|
}
|