Commit 778af68c authored by Sasi Inguva's avatar Sasi Inguva Committed by Michael Niedermayer

avformat/avframe.h: Add a flag in AVIndexEntry to discard frame after decoding.

Signed-off-by: 's avatarSasi Inguva <isasi@google.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 3cb400c1
...@@ -814,6 +814,9 @@ typedef struct AVIndexEntry { ...@@ -814,6 +814,9 @@ typedef struct AVIndexEntry {
* is known * is known
*/ */
#define AVINDEX_KEYFRAME 0x0001 #define AVINDEX_KEYFRAME 0x0001
#define AVINDEX_DISCARD_FRAME 0x0002 /**
* Flag is used to indicate which frame should be discarded after decoding.
*/
int flags:2; int flags:2;
int size:30; //Yeah, trying to keep the size of this small to reduce memory requirements (it is 24 vs. 32 bytes due to possible 8-byte alignment). int size:30; //Yeah, trying to keep the size of this small to reduce memory requirements (it is 24 vs. 32 bytes due to possible 8-byte alignment).
int min_distance; /**< Minimum distance between this and the previous keyframe, used to avoid unneeded searching. */ int min_distance; /**< Minimum distance between this and the previous keyframe, used to avoid unneeded searching. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment