/* SPDX-License-Identifier: GPL-2.0 */ /* * Broadcom BCM2835 V4L2 driver * * Copyright © 2013 Raspberry Pi (Trading) Ltd. * * Authors: Vincent Sanders @ Collabora * Dave Stevenson @ Broadcom * (now [email protected]) * Simon Mellor @ Broadcom * Luke Diamand @ Broadcom */ #ifndef MMAL_MSG_FORMAT_H #define MMAL_MSG_FORMAT_H #include <linux/math.h> #include "mmal-msg-common.h" /* MMAL_ES_FORMAT_T */ struct mmal_audio_format { … }; struct mmal_video_format { … }; struct mmal_subpicture_format { … }; mmal_es_specific_format; /* Definition of an elementary stream format (MMAL_ES_FORMAT_T) */ struct mmal_es_format_local { … }; /* Remote definition of an elementary stream format (MMAL_ES_FORMAT_T) */ struct mmal_es_format { … }; #endif /* MMAL_MSG_FORMAT_H */