diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2016-03-02 07:48:36 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2016-03-03 04:18:17 -0500 |
commit | bddc418787cccb2ba92b5e601d1d9b04f4668946 (patch) | |
tree | 1087174d917a47541b02c56d4a1a966c9e6d3a6d /include/media/v4l2-mc.h | |
parent | 078600f514a12fd763ac84c86af68ef5b5267563 (diff) |
[media] au0828: use standard demod pads struct
As we want au0828 to use the core function to create the MC
graphs, use enum demod_pad_index instead of
enum au8522_media_pads.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'include/media/v4l2-mc.h')
-rw-r--r-- | include/media/v4l2-mc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/media/v4l2-mc.h b/include/media/v4l2-mc.h index 5cbc20923faf..9dff7adff64c 100644 --- a/include/media/v4l2-mc.h +++ b/include/media/v4l2-mc.h | |||
@@ -87,12 +87,14 @@ enum if_aud_dec_pad_index { | |||
87 | * @DEMOD_PAD_IF_INPUT: IF input sink pad. | 87 | * @DEMOD_PAD_IF_INPUT: IF input sink pad. |
88 | * @DEMOD_PAD_VID_OUT: Video output source pad. | 88 | * @DEMOD_PAD_VID_OUT: Video output source pad. |
89 | * @DEMOD_PAD_VBI_OUT: Vertical Blank Interface (VBI) output source pad. | 89 | * @DEMOD_PAD_VBI_OUT: Vertical Blank Interface (VBI) output source pad. |
90 | * @DEMOD_PAD_AUDIO_OUT: Audio output source pad. | ||
90 | * @DEMOD_NUM_PADS: Maximum number of output pads. | 91 | * @DEMOD_NUM_PADS: Maximum number of output pads. |
91 | */ | 92 | */ |
92 | enum demod_pad_index { | 93 | enum demod_pad_index { |
93 | DEMOD_PAD_IF_INPUT, | 94 | DEMOD_PAD_IF_INPUT, |
94 | DEMOD_PAD_VID_OUT, | 95 | DEMOD_PAD_VID_OUT, |
95 | DEMOD_PAD_VBI_OUT, | 96 | DEMOD_PAD_VBI_OUT, |
97 | DEMOD_PAD_AUDIO_OUT, | ||
96 | DEMOD_NUM_PADS | 98 | DEMOD_NUM_PADS |
97 | }; | 99 | }; |
98 | 100 | ||