Music Hub ..
A session-wide music playback service
socket_types.h
Go to the documentation of this file.
1/*
2 * Copyright © 2017 Canonical Ltd.
3 *
4 * This program is free software: you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License version 3,
6 * as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored by: Alfonso Sanchez-Beato <alfonso.sanchez-beato@canonical.com>
17 */
18#ifndef CORE_UBUNTU_MEDIA_VIDEO_SOCKET_TYPES_H_
19#define CORE_UBUNTU_MEDIA_VIDEO_SOCKET_TYPES_H_
20
21namespace core
22{
23namespace ubuntu
24{
25namespace media
26{
27namespace video
28{
29
31{
32 int width;
33 int height;
34 int fourcc;
35 int stride;
36 int offset;
37};
38
40{
41 int fd;
43};
44
45}
46}
47}
48}
49
50#endif // CORE_UBUNTU_MEDIA_VIDEO_SOCKET_TYPES_H_
Definition: player.h:34