summaryrefslogtreecommitdiff
path: root/src/video_decode.h
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2013-01-31 15:25:59 +0100
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2013-01-31 17:11:33 +0100
commit80924a0068db59c7e114992869766b1a4c543cac (patch)
tree4b48c28f5ce963ecbbd08cd9e09043d94bfe358b /src/video_decode.h
parent8bdae5adf908b361447d337cf632f66a3818711c (diff)
downloadadvtime-80924a0068db59c7e114992869766b1a4c543cac.tar.gz
advtime-80924a0068db59c7e114992869766b1a4c543cac.tar.bz2
advtime-80924a0068db59c7e114992869766b1a4c543cac.zip
video-decode: Add duration to struct video_decode
Diffstat (limited to 'src/video_decode.h')
-rw-r--r--src/video_decode.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_decode.h b/src/video_decode.h
index 40d2587..3261b76 100644
--- a/src/video_decode.h
+++ b/src/video_decode.h
@@ -3,7 +3,9 @@
#include <stdint.h>
-struct video_decode;
+struct video_decode {
+ int64_t duration;
+};
struct video_frame {
uint8_t *data;
int width, height, stride;