summaryrefslogtreecommitdiff
path: root/libavformat/nut.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-11-16 12:27:43 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-11-16 12:27:43 +0000
commitf7c9f48dc6d34454692b0dd78c3c270b2fefaba1 (patch)
tree19ba6a036a5aead2996f509c2ab9570169c1f4df /libavformat/nut.h
parent39c6a118f048f2c11a9760a73aec626076145c83 (diff)
10l forgot (skip non keyframes after seeking between syncpoint and the first keyframe)
Originally committed as revision 7103 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nut.h')
-rw-r--r--libavformat/nut.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/nut.h b/libavformat/nut.h
index b8e8242526..82bbf6f178 100644
--- a/libavformat/nut.h
+++ b/libavformat/nut.h
@@ -66,7 +66,8 @@ typedef struct {
} FrameCode; // maybe s/FrameCode/framecode_t/ or change all to java style but dont mix
typedef struct {
- int last_key_frame; ///<was the last frame a keyfraeme
+ int last_flags;
+ int skip_until_key_frame;
int64_t last_pts;
int time_base_id;
AVRational time_base;