summaryrefslogtreecommitdiff
path: root/src/video_decode.h
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2013-01-29 20:08:43 +0100
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2013-01-29 20:08:43 +0100
commit7b53c2b29bb9fc77c9c0515446199ebe20cc0de0 (patch)
treec327745469bae04cbac2a89ed61efad8192afc7d /src/video_decode.h
parent6d9c2c7423c15b1af1104fd1c3be7349b069f6c2 (diff)
downloadadvtime-7b53c2b29bb9fc77c9c0515446199ebe20cc0de0.tar.gz
advtime-7b53c2b29bb9fc77c9c0515446199ebe20cc0de0.tar.bz2
advtime-7b53c2b29bb9fc77c9c0515446199ebe20cc0de0.zip
video-decode: Make struct video_decode private again
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);