diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-11-16 12:27:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-11-16 12:27:43 +0000 |
commit | f7c9f48dc6d34454692b0dd78c3c270b2fefaba1 (patch) | |
tree | 19ba6a036a5aead2996f509c2ab9570169c1f4df | |
parent | 39c6a118f048f2c11a9760a73aec626076145c83 (diff) | |
download | ffmpeg-f7c9f48dc6d34454692b0dd78c3c270b2fefaba1.tar.gz |
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
-rw-r--r-- | libavformat/nut.h | 3 |
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; |