Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c8398b8d authored by Prateek Shrivastava's avatar Prateek Shrivastava
Browse files

msm: vidc: Add MBAFF interlace type



Add new interlace type to notify client of 
MBAFF interlaced type. This is ORed with
interlace extradata payload format to check if
content is MBAFF.

CRs-Fixed: 2197107
Change-Id: I3f34e13570e9d17303889ed6ffef5ca3ed00faeb
Signed-off-by: default avatarPrateek Shrivastava <pshrivas@codeaurora.org>
parent f8783c1a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -296,6 +296,9 @@ enum msm_vidc_interlace_type {
	MSM_VIDC_INTERLACE_INTERLEAVE_FRAME_BOTTOMFIELDFIRST = 0x04,
	MSM_VIDC_INTERLACE_FRAME_TOPFIELDFIRST = 0x08,
	MSM_VIDC_INTERLACE_FRAME_BOTTOMFIELDFIRST = 0x10,
#define MSM_VIDC_INTERLACE_FRAME_MBAFF \
	MSM_VIDC_INTERLACE_FRAME_MBAFF
	MSM_VIDC_INTERLACE_FRAME_MBAFF = 0x20,
};

/* enum msm_vidc_framepack_type */