21 lines
220 B
C++
21 lines
220 B
C++
#ifndef FFCONV_PACKET_H
|
|
#define FFCONV_PACKET_H
|
|
|
|
extern "C" {
|
|
#include <libavformat/avformat.h>
|
|
}
|
|
|
|
namespace ffcpp {
|
|
|
|
class Packet {
|
|
private:
|
|
AVPacket _packet;
|
|
|
|
public:
|
|
Packet();
|
|
};
|
|
|
|
}
|
|
|
|
#endif //FFCONV_PACKET_H
|