Browse Source

avutil/frame: Add a flag to discard frame after decode.

Signed-off-by: Sasi Inguva <isasi@google.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.2
Sasi Inguva Michael Niedermayer 8 years ago
parent
commit
3cb400c11a
3 changed files with 6 additions and 1 deletions
  1. +1
    -0
      libavutil/frame.c
  2. +4
    -0
      libavutil/frame.h
  3. +1
    -1
      libavutil/version.h

+ 1
- 0
libavutil/frame.c View File

@@ -114,6 +114,7 @@ static void get_frame_defaults(AVFrame *frame)
frame->colorspace = AVCOL_SPC_UNSPECIFIED;
frame->color_range = AVCOL_RANGE_UNSPECIFIED;
frame->chroma_location = AVCHROMA_LOC_UNSPECIFIED;
frame->flags = 0;
}

static void free_side_data(AVFrameSideData **ptr_sd)


+ 4
- 0
libavutil/frame.h View File

@@ -395,6 +395,10 @@ typedef struct AVFrame {
* The frame data may be corrupted, e.g. due to decoding errors.
*/
#define AV_FRAME_FLAG_CORRUPT (1 << 0)
/**
* A flag to mark the frames which need to be decoded, but shouldn't be output.
*/
#define AV_FRAME_FLAG_DISCARD (1 << 2)
/**
* @}
*/


+ 1
- 1
libavutil/version.h View File

@@ -79,7 +79,7 @@
*/

#define LIBAVUTIL_VERSION_MAJOR 55
#define LIBAVUTIL_VERSION_MINOR 29
#define LIBAVUTIL_VERSION_MINOR 30
#define LIBAVUTIL_VERSION_MICRO 100

#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \


Loading…
Cancel
Save