13 lines
226 B
C++
13 lines
226 B
C++
#include <libavcodec/codec.h>
|
|
extern "C" {
|
|
#include <libavcodec/avcodec.h>
|
|
#include <libavformat/avformat.h>
|
|
#include <libavutil/avutil.h>
|
|
}
|
|
|
|
class Stream {
|
|
private:
|
|
AVFormatContext* m_avFormatContext;
|
|
|
|
};
|