summaryrefslogtreecommitdiff
path: root/src/video_decode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_decode.h')
-rw-r--r--src/video_decode.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/video_decode.h b/src/video_decode.h
index 5b5d88c..40d2587 100644
--- a/src/video_decode.h
+++ b/src/video_decode.h
@@ -2,11 +2,6 @@
#define _VIDEO_DECODE_H_
#include <stdint.h>
-#include <libavutil/avutil.h>
-#include <libavutil/error.h>
-#include <libavformat/avformat.h>
-#include <libavcodec/avcodec.h>
-#include <libswscale/swscale.h>
struct video_decode;
struct video_frame {
@@ -15,13 +10,6 @@ struct video_frame {
int64_t dts;
};
-struct video_decode {
- AVFormatContext *fmt_ctx;
- AVCodecContext *codec_ctx;
- AVCodec *codec;
- int stream;
-};
-
int
video_decode_init(struct video_decode **vd, char *file, int64_t timestamp);