diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2019-11-09 15:54:16 -0800 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2019-11-13 09:08:43 -0800 |
commit | a1403032c8cb0f78caa7723df940b13d247cfe47 (patch) | |
tree | f959bf93c7b0d59eef9f35dc05d1aed61a3afae5 /libavcodec/dv.h | |
parent | 11a38be99cd0c6685a65940cf0c9114d338235a3 (diff) | |
download | ffmpeg-a1403032c8cb0f78caa7723df940b13d247cfe47.tar.gz |
avcodec/dvenc: support encoding dvcprohd
Diffstat (limited to 'libavcodec/dv.h')
-rw-r--r-- | libavcodec/dv.h | 1 |
1 files changed, 1 insertions, 0 deletions
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)) /** |