Skip to content

Commit d50dd0c

Browse files
committed
include: driver: video: add h264 pixel format support
1 parent 6fca2ed commit d50dd0c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

include/zephyr/drivers/video.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1553,6 +1553,21 @@ int64_t video_get_csi_link_freq(const struct device *dev, uint8_t bpp, uint8_t l
15531553
*/
15541554
#define VIDEO_PIX_FMT_JPEG VIDEO_FOURCC('J', 'P', 'E', 'G')
15551555

1556+
/**
1557+
* H264 with start code
1558+
*/
1559+
#define VIDEO_PIX_FMT_H264 VIDEO_FOURCC('H', '2', '6', '4')
1560+
1561+
/**
1562+
* H264 without start code
1563+
*/
1564+
#define VIDEO_PIX_FMT_H264_NO_SC VIDEO_FOURCC('A', 'V', 'C', '1')
1565+
1566+
/**
1567+
* H264 without start code
1568+
*/
1569+
#define VIDEO_PIX_FMT_H264_MVC VIDEO_FOURCC('M', '2', '6', '4')
1570+
15561571
/**
15571572
* @}
15581573
*/

0 commit comments

Comments
 (0)