mirror of https://git.ffmpeg.org/ffmpeg.git
lavc/vvc_refs: Define VVC_FRAME_FLAG* to h header
So that hardware decoder can use the flags too. Signed-off-by: Fei Wang <fei.w.wang@intel.com>
This commit is contained in:
parent
6bb5dc2ae7
commit
15a75e8e04
|
@ -29,10 +29,6 @@
|
|||
|
||||
#include "refs.h"
|
||||
|
||||
#define VVC_FRAME_FLAG_OUTPUT (1 << 0)
|
||||
#define VVC_FRAME_FLAG_SHORT_REF (1 << 1)
|
||||
#define VVC_FRAME_FLAG_LONG_REF (1 << 2)
|
||||
#define VVC_FRAME_FLAG_BUMPING (1 << 3)
|
||||
|
||||
typedef struct FrameProgress {
|
||||
atomic_int progress[VVC_PROGRESS_LAST];
|
||||
|
|
|
@ -25,6 +25,11 @@
|
|||
|
||||
#include "dec.h"
|
||||
|
||||
#define VVC_FRAME_FLAG_OUTPUT (1 << 0)
|
||||
#define VVC_FRAME_FLAG_SHORT_REF (1 << 1)
|
||||
#define VVC_FRAME_FLAG_LONG_REF (1 << 2)
|
||||
#define VVC_FRAME_FLAG_BUMPING (1 << 3)
|
||||
|
||||
int ff_vvc_output_frame(VVCContext *s, VVCFrameContext *fc, struct AVFrame *out, int no_output_of_prior_pics_flag, int flush);
|
||||
void ff_vvc_bump_frame(VVCContext *s, VVCFrameContext *fc);
|
||||
int ff_vvc_set_new_ref(VVCContext *s, VVCFrameContext *fc, struct AVFrame **frame);
|
||||
|
|
Loading…
Reference in New Issue