forked from roleoroleo/onvif_simple_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
media_service.h
57 lines (53 loc) · 2.21 KB
/
media_service.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* Copyright (c) 2023 roleo.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MEDIA_SERVICE_H
#define MEDIA_SERVICE_H
int media_get_service_capabilities();
int media_get_video_sources();
int media_get_video_source_configurations();
int media_get_video_source_configuration();
int media_get_compatible_video_source_configurations();
int media_get_video_source_configuration_options();
int media_get_profiles();
int media_get_profile();
int media_create_profile();
int media_get_video_encoder_configurations();
int media_get_video_encoder_configuration();
int media_get_compatible_video_encoder_configurations();
int media_get_guaranteed_number_of_video_encoder_instances();
int media_get_video_encoder_configuration_options();
int media_get_snapshot_uri();
int media_get_stream_uri();
int media_get_audio_sources();
int media_get_audio_source_configurations();
int media_get_audio_source_configuration();
int media_get_audio_source_configuration_options();
int media_get_audio_encoder_configuration();
int media_get_audio_encoder_configurations();
int media_get_audio_encoder_configuration_options();
int media_get_audio_decoder_configuration();
int media_get_audio_decoder_configurations();
int media_get_audio_decoder_configuration_options();
int media_get_audio_outputs();
int media_get_audio_output_configuration();
int media_get_audio_output_configurations();
int media_get_audio_output_configuration_options();
int media_get_compatible_audio_source_configurations();
int media_get_compatible_audio_encoder_configurations();
int media_get_compatible_audio_decoder_configurations();
int media_get_compatible_audio_output_configurations();
int media_unsupported(const char *method);
#endif //MEDIA_SERVICE_H