From a1403032c8cb0f78caa7723df940b13d247cfe47 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sat, 9 Nov 2019 15:54:16 -0800 Subject: avcodec/dvenc: support encoding dvcprohd --- libavcodec/dv.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/dv.h') diff --git a/libavcodec/dv.h b/libavcodec/dv.h index 7ef5b7c552..0205d72347 100644 --- a/libavcodec/dv.h +++ b/libavcodec/dv.h @@ -83,6 +83,7 @@ enum dv_pack_type { #define DV_PROFILE_IS_HD(p) ((p)->video_stype & 0x10) #define DV_PROFILE_IS_1080i50(p) (((p)->video_stype == 0x14) && ((p)->dsf == 1)) +#define DV_PROFILE_IS_1080i60(p) (((p)->video_stype == 0x14) && ((p)->dsf == 0)) #define DV_PROFILE_IS_720p50(p) (((p)->video_stype == 0x18) && ((p)->dsf == 1)) /** -- cgit v1.2.1