summaryrefslogtreecommitdiffstats
path: root/meta-pipewire/recipes-multimedia/pipewire/pipewire/0002-extensions-implement-Endpoint-ClientEndpoint-interfa.patch
blob: e49edf4957880f5dbb5c90e3309045485ec145a6 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
From 5afe82a430642c2f7e116941709a624b8fd73011 Mon Sep 17 00:00:00 2001
From: George Kiagiadakis <george.kiagiadakis@collabora.com>
Date: Thu, 23 May 2019 18:59:05 +0300
Subject: [PATCH] extensions: implement Endpoint & ClientEndpoint interfaces

The ClientEndpoint interface allows session managers to register
endpoint objects on pipewire.
The Endpoint interface allows other clients to interact with
endpoints provided by the session manager.

Upstream-Status: Pending
---
 src/extensions/client-endpoint.h              | 106 ++++
 src/extensions/endpoint.h                     | 237 +++++++++
 src/extensions/meson.build                    |   2 +
 src/modules/meson.build                       |  12 +
 src/modules/module-endpoint.c                 | 137 +++++
 src/modules/module-endpoint/endpoint-impl.c   | 428 ++++++++++++++++
 src/modules/module-endpoint/endpoint-impl.h   |  52 ++
 src/modules/module-endpoint/protocol-native.c | 472 ++++++++++++++++++
 src/pipewire/pipewire.c                       |   2 +
 src/pipewire/type.h                           |   3 +-
 10 files changed, 1450 insertions(+), 1 deletion(-)
 create mode 100644 src/extensions/client-endpoint.h
 create mode 100644 src/extensions/endpoint.h
 create mode 100644 src/modules/module-endpoint.c
 create mode 100644 src/modules/module-endpoint/endpoint-impl.c
 create mode 100644 src/modules/module-endpoint/endpoint-impl.h
 create mode 100644 src/modules/module-endpoint/protocol-native.c

diff --git a/src/extensions/client-endpoint.h b/src/extensions/client-endpoint.h
new file mode 100644
index 00000000..0389893c
--- /dev/null
+++ b/src/extensions/client-endpoint.h
@@ -0,0 +1,106 @@
+/* PipeWire
+ *
+ * Copyright © 2019 Collabora Ltd.
+ *   @author George Kiagiadakis <george.kiagiadakis@collabora.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ */
+
+#ifndef PIPEWIRE_EXT_CLIENT_ENDPOINT_H
+#define PIPEWIRE_EXT_CLIENT_ENDPOINT_H
+
+#include "endpoint.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+struct pw_client_endpoint_proxy;
+
+#define PW_VERSION_CLIENT_ENDPOINT			0
+#define PW_EXTENSION_MODULE_CLIENT_ENDPOINT		PIPEWIRE_MODULE_PREFIX "module-endpoint"
+
+#define PW_CLIENT_ENDPOINT_PROXY_METHOD_UPDATE		0
+#define PW_CLIENT_ENDPOINT_PROXY_METHOD_NUM		1
+
+struct pw_client_endpoint_proxy_methods {
+#define PW_VERSION_CLIENT_ENDPOINT_PROXY_METHODS	0
+	uint32_t version;
+
+	/**
+	 * Update endpoint info
+	 */
+	int (*update) (void *object,
+#define PW_CLIENT_ENDPOINT_UPDATE_PARAMS		(1 << 0)
+#define PW_CLIENT_ENDPOINT_UPDATE_PARAMS_INCREMENTAL	(1 << 1)
+#define PW_CLIENT_ENDPOINT_UPDATE_INFO			(1 << 2)
+			uint32_t change_mask,
+			uint32_t n_params,
+			const struct spa_pod **params,
+			const struct pw_endpoint_info *info);
+};
+
+static inline int
+pw_client_endpoint_proxy_update(struct pw_client_endpoint_proxy *p,
+				uint32_t change_mask,
+				uint32_t n_params,
+				const struct spa_pod **params,
+				struct pw_endpoint_info *info)
+{
+	return pw_proxy_do((struct pw_proxy*)p,
+			   struct pw_client_endpoint_proxy_methods, update,
+			   change_mask, n_params, params, info);
+}
+
+#define PW_CLIENT_ENDPOINT_PROXY_EVENT_SET_PARAM	0
+#define PW_CLIENT_ENDPOINT_PROXY_EVENT_NUM		1
+
+struct pw_client_endpoint_proxy_events {
+#define PW_VERSION_CLIENT_ENDPOINT_PROXY_EVENTS	0
+	uint32_t version;
+
+	/**
+	 * Set a parameter on the endpoint
+	 *
+	 * \param id the parameter id to set
+	 * \param flags extra parameter flags
+	 * \param param the parameter to set
+	 */
+	void (*set_param) (void *object, uint32_t id, uint32_t flags,
+			   const struct spa_pod *param);
+};
+
+static inline void
+pw_client_endpoint_proxy_add_listener(struct pw_client_endpoint_proxy *p,
+				struct spa_hook *listener,
+				const struct pw_client_endpoint_proxy_events *events,
+				void *data)
+{
+	pw_proxy_add_proxy_listener((struct pw_proxy*)p, listener, events, data);
+}
+
+#define pw_client_endpoint_resource_set_param(r,...)	\
+	pw_resource_notify(r,struct pw_client_endpoint_proxy_events,set_param,__VA_ARGS__)
+
+#ifdef __cplusplus
+}  /* extern "C" */
+#endif
+
+#endif /* PIPEWIRE_EXT_CLIENT_ENDPOINT_H */
diff --git a/src/extensions/endpoint.h b/src/extensions/endpoint.h
new file mode 100644
index 00000000..211c0895
--- /dev/null
+++ b/src/extensions/endpoint.h
@@ -0,0 +1,237 @@
+/* PipeWire
+ *
+ * Copyright © 2019 Collabora Ltd.
+ *   @author George Kiagiadakis <george.kiagiadakis@collabora.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ */
+
+#ifndef PIPEWIRE_EXT_ENDPOINT_H
+#define PIPEWIRE_EXT_ENDPOINT_H
+
+#include <spa/utils/defs.h>
+#include <spa/utils/type-info.h>
+#include <pipewire/proxy.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+struct pw_endpoint_proxy;
+
+#define PW_VERSION_ENDPOINT			0
+#define PW_EXTENSION_MODULE_ENDPOINT		PIPEWIRE_MODULE_PREFIX "module-endpoint"
+
+/* extending enum spa_param_type */
+enum endpoint_param_type {
+	PW_ENDPOINT_PARAM_EnumControl = 0x1000,
+	PW_ENDPOINT_PARAM_Control,
+	PW_ENDPOINT_PARAM_EnumStream,
+};
+
+enum endpoint_param_object_type {
+	PW_ENDPOINT_OBJECT_ParamControl = PW_TYPE_FIRST + SPA_TYPE_OBJECT_START + 0x1001,
+	PW_ENDPOINT_OBJECT_ParamStream,
+};
+
+/** properties for PW_ENDPOINT_OBJECT_ParamControl */
+enum endpoint_param_control {
+	PW_ENDPOINT_PARAM_CONTROL_START,	/**< object id, one of enum endpoint_param_type */
+	PW_ENDPOINT_PARAM_CONTROL_id,		/**< control id (Int) */
+	PW_ENDPOINT_PARAM_CONTROL_stream_id,	/**< stream id (Int) */
+	PW_ENDPOINT_PARAM_CONTROL_name,		/**< control name (String) */
+	PW_ENDPOINT_PARAM_CONTROL_type,		/**< control type (Range) */
+	PW_ENDPOINT_PARAM_CONTROL_value,	/**< control value */
+};
+
+/** properties for PW_ENDPOINT_OBJECT_ParamStream */
+enum endpoint_param_stream {
+	PW_ENDPOINT_PARAM_STREAM_START,		/**< object id, one of enum endpoint_param_type */
+	PW_ENDPOINT_PARAM_STREAM_id,		/**< stream id (Int) */
+	PW_ENDPOINT_PARAM_STREAM_name,		/**< stream name (String) */
+};
+
+static const struct spa_type_info endpoint_param_type_info[] = {
+	{ PW_ENDPOINT_PARAM_EnumControl, SPA_TYPE_Int, SPA_TYPE_INFO_PARAM_ID_BASE "EnumControl", NULL },
+	{ PW_ENDPOINT_PARAM_Control, SPA_TYPE_Int, SPA_TYPE_INFO_PARAM_ID_BASE "Control", NULL },
+	{ PW_ENDPOINT_PARAM_EnumStream, SPA_TYPE_Int, SPA_TYPE_INFO_PARAM_ID_BASE "EnumStream", NULL },
+	{ 0, 0, NULL, NULL },
+};
+
+#define PW_ENDPOINT_TYPE_INFO_ParamControl		SPA_TYPE_INFO_PARAM_BASE "ParamControl"
+#define PW_ENDPOINT_TYPE_INFO_PARAM_CONTROL_BASE	PW_ENDPOINT_TYPE_INFO_ParamControl ":"
+
+static const struct spa_type_info endpoint_param_control_info[] = {
+	{ PW_ENDPOINT_PARAM_CONTROL_START, SPA_TYPE_Id, PW_ENDPOINT_TYPE_INFO_PARAM_CONTROL_BASE, spa_type_param, },
+	{ PW_ENDPOINT_PARAM_CONTROL_id, SPA_TYPE_Int, PW_ENDPOINT_TYPE_INFO_PARAM_CONTROL_BASE "id", NULL },
+	{ PW_ENDPOINT_PARAM_CONTROL_stream_id, SPA_TYPE_Int, PW_ENDPOINT_TYPE_INFO_PARAM_CONTROL_BASE "streamId", NULL },
+	{ PW_ENDPOINT_PARAM_CONTROL_name, SPA_TYPE_String, PW_ENDPOINT_TYPE_INFO_PARAM_CONTROL_BASE "name", NULL },
+	{ PW_ENDPOINT_PARAM_CONTROL_type, SPA_TYPE_Pod, PW_ENDPOINT_TYPE_INFO_PARAM_CONTROL_BASE "type", NULL },
+	{ PW_ENDPOINT_PARAM_CONTROL_value, SPA_TYPE_Struct, PW_ENDPOINT_TYPE_INFO_PARAM_CONTROL_BASE "value", NULL },
+	{ 0, 0, NULL, NULL },
+};
+
+#define PW_ENDPOINT_TYPE_INFO_ParamStream		SPA_TYPE_INFO_PARAM_BASE "ParamStream"
+#define PW_ENDPOINT_TYPE_INFO_PARAM_STREAM_BASE		PW_ENDPOINT_TYPE_INFO_ParamStream ":"
+
+static const struct spa_type_info endpoint_param_stream_info[] = {
+	{ PW_ENDPOINT_PARAM_STREAM_START, SPA_TYPE_Id, PW_ENDPOINT_TYPE_INFO_PARAM_STREAM_BASE, spa_type_param, },
+	{ PW_ENDPOINT_PARAM_STREAM_id, SPA_TYPE_Int, PW_ENDPOINT_TYPE_INFO_PARAM_STREAM_BASE "id", NULL },
+	{ PW_ENDPOINT_PARAM_STREAM_name, SPA_TYPE_String, PW_ENDPOINT_TYPE_INFO_PARAM_STREAM_BASE "name", NULL },
+	{ 0, 0, NULL, NULL },
+};
+
+static const struct spa_type_info endpoint_param_object_type_info[] = {
+	{ PW_ENDPOINT_OBJECT_ParamControl, SPA_TYPE_Object, SPA_TYPE_INFO_OBJECT_BASE "ParamControl", endpoint_param_control_info, },
+	{ PW_ENDPOINT_OBJECT_ParamStream, SPA_TYPE_Object, SPA_TYPE_INFO_OBJECT_BASE "ParamStream", endpoint_param_stream_info },
+	{ 0, 0, NULL, NULL },
+};
+
+struct pw_endpoint_info {
+	uint32_t id;				/**< id of the global */
+#define PW_ENDPOINT_CHANGE_MASK_PARAMS		(1 << 0)
+#define PW_ENDPOINT_CHANGE_MASK_PROPS		(1 << 1)
+	uint32_t change_mask;			/**< bitfield of changed fields since last call */
+	uint32_t n_params;			/**< number of items in \a params */
+	struct spa_param_info *params;		/**< parameters */
+	struct spa_dict *props;			/**< extra properties */
+};
+
+#define PW_ENDPOINT_PROXY_METHOD_SUBSCRIBE_PARAMS	0
+#define PW_ENDPOINT_PROXY_METHOD_ENUM_PARAMS		1
+#define PW_ENDPOINT_PROXY_METHOD_SET_PARAM		2
+#define PW_ENDPOINT_PROXY_METHOD_NUM			3
+
+struct pw_endpoint_proxy_methods {
+#define PW_VERSION_ENDPOINT_PROXY_METHODS		0
+	uint32_t version;
+
+	/**
+	 * Subscribe to parameter changes
+	 *
+	 * Automatically emit param events for the given ids when
+	 * they are changed.
+	 *
+	 * \param ids an array of param ids
+	 * \param n_ids the number of ids in \a ids
+	 */
+	int (*subscribe_params) (void *object, uint32_t *ids, uint32_t n_ids);
+
+	/**
+	 * Enumerate endpoint parameters
+	 *
+	 * Start enumeration of endpoint parameters. For each param, a
+	 * param event will be emited.
+	 *
+	 * \param seq a sequence number to place in the reply
+	 * \param id the parameter id to enum or SPA_ID_INVALID for all
+	 * \param start the start index or 0 for the first param
+	 * \param num the maximum number of params to retrieve
+	 * \param filter a param filter or NULL
+	 */
+	int (*enum_params) (void *object, int seq,
+			    uint32_t id, uint32_t start, uint32_t num,
+			    const struct spa_pod *filter);
+
+	/**
+	 * Set a parameter on the endpoint
+	 *
+	 * \param id the parameter id to set
+	 * \param flags extra parameter flags
+	 * \param param the parameter to set
+	 */
+	int (*set_param) (void *object, uint32_t id, uint32_t flags,
+			  const struct spa_pod *param);
+};
+
+static inline int
+pw_endpoint_proxy_subscribe_params(struct pw_endpoint_proxy *p, uint32_t *ids, uint32_t n_ids)
+{
+	return pw_proxy_do((struct pw_proxy*)p, struct pw_endpoint_proxy_methods,
+			   subscribe_params, ids, n_ids);
+}
+
+static inline int
+pw_endpoint_proxy_enum_params(struct pw_endpoint_proxy *p, int seq,
+				uint32_t id, uint32_t start, uint32_t num,
+				const struct spa_pod *filter)
+{
+	return pw_proxy_do((struct pw_proxy*)p, struct pw_endpoint_proxy_methods,
+			    enum_params, seq, id, start, num, filter);
+}
+
+static inline int
+pw_endpoint_proxy_set_param(struct pw_endpoint_proxy *p, uint32_t id,
+			    uint32_t flags, const struct spa_pod *param)
+{
+	return pw_proxy_do((struct pw_proxy*)p, struct pw_endpoint_proxy_methods,
+			   set_param, id, flags, param);
+}
+
+#define PW_ENDPOINT_PROXY_EVENT_INFO		0
+#define PW_ENDPOINT_PROXY_EVENT_PARAM		1
+#define PW_ENDPOINT_PROXY_EVENT_NUM		2
+
+struct pw_endpoint_proxy_events {
+#define PW_VERSION_ENDPOINT_PROXY_EVENTS	0
+	uint32_t version;
+
+	/**
+	 * Notify endpoint info
+	 *
+	 * \param info info about the endpoint
+	 */
+	void (*info) (void *object, const struct pw_endpoint_info * info);
+
+	/**
+	 * Notify an endpoint param
+	 *
+	 * Event emited as a result of the enum_params method.
+	 *
+	 * \param seq the sequence number of the request
+	 * \param id the param id
+	 * \param index the param index
+	 * \param next the param index of the next param
+	 * \param param the parameter
+	 */
+	void (*param) (void *object, int seq, uint32_t id,
+		       uint32_t index, uint32_t next,
+		       const struct spa_pod *param);
+};
+
+static inline void
+pw_endpoint_proxy_add_listener(struct pw_endpoint_proxy *p,
+				struct spa_hook *listener,
+				const struct pw_endpoint_proxy_events *events,
+				void *data)
+{
+	pw_proxy_add_proxy_listener((struct pw_proxy*)p, listener, events, data);
+}
+
+#define pw_endpoint_resource_info(r,...)	\
+	pw_resource_notify(r,struct pw_endpoint_proxy_events,info,__VA_ARGS__)
+#define pw_endpoint_resource_param(r,...)	\
+	pw_resource_notify(r,struct pw_endpoint_proxy_events,param,__VA_ARGS__)
+
+#ifdef __cplusplus
+}  /* extern "C" */
+#endif
+
+#endif /* PIPEWIRE_EXT_ENDPOINT_H */
diff --git a/src/extensions/meson.build b/src/extensions/meson.build
index a7f5d3cb..9f690caf 100644
--- a/src/extensions/meson.build
+++ b/src/extensions/meson.build
@@ -1,5 +1,7 @@
 pipewire_ext_headers = [
+  'client-endpoint.h',
   'client-node.h',
+  'endpoint.h',
   'protocol-native.h',
 ]
 
diff --git a/src/modules/meson.build b/src/modules/meson.build
index 98bc3864..572f1b6b 100644
--- a/src/modules/meson.build
+++ b/src/modules/meson.build
@@ -37,6 +37,18 @@ pipewire_module_client_node = shared_library('pipewire-module-client-node',
   dependencies : [mathlib, dl_lib, pipewire_dep],
 )
 
+pipewire_module_endpoint = shared_library('pipewire-module-endpoint',
+  [ 'module-endpoint.c',
+    'module-endpoint/endpoint-impl.c',
+    'module-endpoint/protocol-native.c',
+  ],
+  c_args : pipewire_module_c_args,
+  include_directories : [configinc, spa_inc],
+  install : true,
+  install_dir : modules_install_dir,
+  dependencies : [mathlib, dl_lib, pipewire_dep],
+)
+
 pipewire_module_link_factory = shared_library('pipewire-module-link-factory',
   [ 'module-link-factory.c' ],
   c_args : pipewire_module_c_args,
diff --git a/src/modules/module-endpoint.c b/src/modules/module-endpoint.c
new file mode 100644
index 00000000..d830de1b
--- /dev/null
+++ b/src/modules/module-endpoint.c
@@ -0,0 +1,137 @@
+/* PipeWire
+ *
+ * Copyright © 2019 Collabora Ltd.
+ *   @author George Kiagiadakis <george.kiagiadakis@collabora.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ */
+
+#include "config.h"
+
+#include "module-endpoint/endpoint-impl.h"
+
+struct pw_protocol *pw_protocol_native_ext_endpoint_init(struct pw_core *core);
+
+static const struct spa_dict_item module_props[] = {
+	{ PW_MODULE_PROP_AUTHOR, "George Kiagiadakis <george.kiagiadakis@collabora.com>" },
+	{ PW_MODULE_PROP_DESCRIPTION, "Allows clients to interract with session manager endpoints" },
+	{ PW_MODULE_PROP_VERSION, PACKAGE_VERSION },
+};
+
+struct factory_data {
+	struct pw_factory *this;
+	struct pw_properties *properties;
+
+	struct pw_module *module;
+	struct spa_hook module_listener;
+};
+
+static void *create_object(void *_data,
+			   struct pw_resource *resource,
+			   uint32_t type,
+			   uint32_t version,
+			   struct pw_properties *properties,
+			   uint32_t new_id)
+{
+	void *result;
+	struct pw_resource *endpoint_resource;
+	struct pw_global *parent;
+	struct pw_client *client = pw_resource_get_client(resource);
+
+	endpoint_resource = pw_resource_new(client, new_id, PW_PERM_RWX, type, version, 0);
+	if (endpoint_resource == NULL)
+		goto no_mem;
+
+	parent = pw_client_get_global(client);
+
+	result = pw_client_endpoint_new(endpoint_resource, parent, properties);
+	if (result == NULL)
+		goto no_mem;
+
+	return result;
+
+      no_mem:
+	pw_log_error("can't create endpoint");
+	pw_resource_error(resource, -ENOMEM, "can't create endpoint: no memory");
+	if (properties)
+		pw_properties_free(properties);
+	return NULL;
+}
+
+static const struct pw_factory_implementation impl_factory = {
+	PW_VERSION_FACTORY_IMPLEMENTATION,
+	.create_object = create_object,
+};
+
+static void module_destroy(void *data)
+{
+	struct factory_data *d = data;
+
+	spa_hook_remove(&d->module_listener);
+
+	if (d->properties)
+		pw_properties_free(d->properties);
+
+	pw_factory_destroy(d->this);
+}
+
+static const struct pw_module_events module_events = {
+	PW_VERSION_MODULE_EVENTS,
+	.destroy = module_destroy,
+};
+
+static int module_init(struct pw_module *module, struct pw_properties *properties)
+{
+	struct pw_core *core = pw_module_get_core(module);
+	struct pw_factory *factory;
+	struct factory_data *data;
+
+	factory = pw_factory_new(core,
+				 "client-endpoint",
+				 PW_TYPE_INTERFACE_ClientEndpoint,
+				 PW_VERSION_CLIENT_ENDPOINT,
+				 NULL,
+				 sizeof(*data));
+	if (factory == NULL)
+		return -ENOMEM;
+
+	data = pw_factory_get_user_data(factory);
+	data->this = factory;
+	data->module = module;
+	data->properties = properties;
+
+	pw_log_debug("module-endpoint %p: new", module);
+
+	pw_factory_set_implementation(factory, &impl_factory, data);
+	pw_factory_register(factory, NULL, pw_module_get_global(module), NULL);
+
+	pw_protocol_native_ext_endpoint_init(core);
+
+	pw_module_add_listener(module, &data->module_listener, &module_events, data);
+	pw_module_update_properties(module, &SPA_DICT_INIT_ARRAY(module_props));
+
+	return 0;
+}
+
+SPA_EXPORT
+int pipewire__module_init(struct pw_module *module, const char *args)
+{
+	return module_init(module, NULL);
+}
diff --git a/src/modules/module-endpoint/endpoint-impl.c b/src/modules/module-endpoint/endpoint-impl.c
new file mode 100644
index 00000000..252eeca1
--- /dev/null
+++ b/src/modules/module-endpoint/endpoint-impl.c
@@ -0,0 +1,428 @@
+/* PipeWire
+ *
+ * Copyright © 2019 Collabora Ltd.
+ *   @author George Kiagiadakis <george.kiagiadakis@collabora.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ */
+
+#include "endpoint-impl.h"
+#include <pipewire/private.h>
+#include <spa/pod/filter.h>
+#include <spa/pod/compare.h>
+
+struct pw_endpoint {
+	struct pw_core *core;
+	struct pw_global *global;
+	struct pw_global *parent;
+
+	struct pw_client_endpoint *client_ep;
+
+	uint32_t n_params;
+	struct spa_pod **params;
+
+	struct pw_endpoint_info info;
+	struct pw_properties *props;
+};
+
+struct pw_client_endpoint {
+	struct pw_resource *owner_resource;
+	struct spa_hook owner_resource_listener;
+
+	struct pw_endpoint endpoint;
+};
+
+struct resource_data {
+	struct pw_endpoint *endpoint;
+	struct pw_client_endpoint *client_ep;
+
+	struct spa_hook resource_listener;
+
+	uint32_t n_subscribe_ids;
+	uint32_t subscribe_ids[32];
+};
+
+static int
+endpoint_enum_params (void *object, int seq,
+		      uint32_t id, uint32_t start, uint32_t num,
+		      const struct spa_pod *filter)
+{
+	struct pw_resource *resource = object;
+	struct resource_data *data = pw_resource_get_user_data(resource);
+	struct pw_endpoint *this = data->endpoint;
+	struct spa_pod *result;
+	struct spa_pod *param;
+	uint8_t buffer[1024];
+	struct spa_pod_builder b = { 0 };
+	uint32_t index;
+	uint32_t next = start;
+	uint32_t count = 0;
+
+	while (true) {
+		index = next++;
+		if (index >= this->n_params)
+			break;
+
+		param = this->params[index];
+
+		if (param == NULL || !spa_pod_is_object_id(param, id))
+			continue;
+
+		spa_pod_builder_init(&b, buffer, sizeof(buffer));
+		if (spa_pod_filter(&b, &result, param, filter) != 0)
+			continue;
+
+		pw_log_debug("endpoint %p: %d param %u", this, seq, index);
+
+		pw_endpoint_resource_param(resource, seq, id, index, next, result);
+
+		if (++count == num)
+			break;
+	}
+	return 0;
+}
+
+static int
+endpoint_subscribe_params (void *object, uint32_t *ids, uint32_t n_ids)
+{
+	struct pw_resource *resource = object;
+	struct resource_data *data = pw_resource_get_user_data(resource);
+	uint32_t i;
+
+	n_ids = SPA_MIN(n_ids, SPA_N_ELEMENTS(data->subscribe_ids));
+	data->n_subscribe_ids = n_ids;
+
+	for (i = 0; i < n_ids; i++) {
+		data->subscribe_ids[i] = ids[i];
+		pw_log_debug("endpoint %p: resource %d subscribe param %u",
+			data->endpoint, resource->id, ids[i]);
+		endpoint_enum_params(resource, 1, ids[i], 0, UINT32_MAX, NULL);
+	}
+	return 0;
+}
+
+static int
+endpoint_set_param (void *object, uint32_t id, uint32_t flags,
+		    const struct spa_pod *param)
+{
+	struct pw_resource *resource = object;
+	struct resource_data *data = pw_resource_get_user_data(resource);
+	struct pw_client_endpoint *client_ep = data->client_ep;
+
+	pw_client_endpoint_resource_set_param(client_ep->owner_resource,
+						id, flags, param);
+
+	return 0;
+}
+
+static const struct pw_endpoint_proxy_methods endpoint_methods = {
+	PW_VERSION_ENDPOINT_PROXY_METHODS,
+	.subscribe_params = endpoint_subscribe_params,
+	.enum_params = endpoint_enum_params,
+	.set_param = endpoint_set_param,
+};
+
+static void
+endpoint_unbind(void *data)
+{
+	struct pw_resource *resource = data;
+	spa_list_remove(&resource->link);
+}
+
+static const struct pw_resource_events resource_events = {
+	PW_VERSION_RESOURCE_EVENTS,
+	.destroy = endpoint_unbind,
+};
+
+static int
+endpoint_bind(void *_data, struct pw_client *client, uint32_t permissions,
+	      uint32_t version, uint32_t id)
+{
+	struct pw_endpoint *this = _data;
+	struct pw_global *global = this->global;
+	struct pw_resource *resource;
+	struct resource_data *data;
+
+	resource = pw_resource_new(client, id, permissions, global->type, version, sizeof(*data));
+	if (resource == NULL)
+		goto no_mem;
+
+	data = pw_resource_get_user_data(resource);
+	data->endpoint = this;
+	data->client_ep = this->client_ep;
+	pw_resource_add_listener(resource, &data->resource_listener, &resource_events, resource);
+
+	pw_resource_set_implementation(resource, &endpoint_methods, resource);
+
+	pw_log_debug("endpoint %p: bound to %d", this, resource->id);
+
+	spa_list_append(&global->resource_list, &resource->link);
+
+	this->info.change_mask = PW_ENDPOINT_CHANGE_MASK_PARAMS |
+				 PW_ENDPOINT_CHANGE_MASK_PROPS;
+	pw_endpoint_resource_info(resource, &this->info);
+	this->info.change_mask = 0;
+
+	return 0;
+
+      no_mem:
+	pw_log_error("can't create node resource");
+	return -ENOMEM;
+}
+
+static int
+pw_endpoint_init(struct pw_endpoint *this,
+		 struct pw_core *core,
+		 struct pw_client *owner,
+		 struct pw_global *parent,
+		 struct pw_properties *properties)
+{
+	struct pw_properties *props = NULL;
+
+	pw_log_debug("endpoint %p: new", this);
+
+	this->core = core;
+	this->parent = parent;
+
+	props = properties ? properties : pw_properties_new(NULL, NULL);
+	if (!props)
+		goto no_mem;
+
+	this->props = pw_properties_copy (props);
+	if (!this->props)
+		goto no_mem;
+
+	this->global = pw_global_new (core,
+			PW_TYPE_INTERFACE_Endpoint,
+			PW_VERSION_ENDPOINT,
+			props, endpoint_bind, this);
+	if (!this->global)
+		goto no_mem;
+
+	this->info.id = this->global->id;
+	this->info.props = &this->props->dict;
+
+	return pw_global_register(this->global, owner, parent);
+
+      no_mem:
+	pw_log_error("can't create endpoint - out of memory");
+	if (props && !properties)
+		pw_properties_free(props);
+	if (this->props)
+		pw_properties_free(this->props);
+	return -ENOMEM;
+}
+
+static void
+pw_endpoint_clear(struct pw_endpoint *this)
+{
+	uint32_t i;
+
+	pw_log_debug("endpoint %p: destroy", this);
+
+	pw_global_destroy(this->global);
+
+	for (i = 0; i < this->n_params; i++)
+		free(this->params[i]);
+	free(this->params);
+
+	free(this->info.params);
+
+	if (this->props)
+		pw_properties_free(this->props);
+}
+
+static void
+endpoint_notify_subscribed(struct pw_endpoint *this,
+			   uint32_t index, uint32_t next)
+{
+	struct pw_global *global = this->global;
+	struct pw_resource *resource;
+	struct resource_data *data;
+	struct spa_pod *param = this->params[index];
+	uint32_t id;
+	uint32_t i;
+
+	if (!param || !spa_pod_is_object (param))
+		return;
+
+	id = SPA_POD_OBJECT_ID (param);
+
+	spa_list_for_each(resource, &global->resource_list, link) {
+		data = pw_resource_get_user_data(resource);
+		for (i = 0; i < data->n_subscribe_ids; i++) {
+			if (data->subscribe_ids[i] == id) {
+				pw_endpoint_resource_param(resource, 1, id,
+					index, next, param);
+			}
+		}
+	}
+}
+
+static int
+client_endpoint_update(void *object,
+	uint32_t change_mask,
+	uint32_t n_params,
+	const struct spa_pod **params,
+	const struct pw_endpoint_info *info)
+{
+	struct pw_client_endpoint *cliep = object;
+	struct pw_endpoint *this = &cliep->endpoint;
+
+	if (change_mask & PW_CLIENT_ENDPOINT_UPDATE_PARAMS) {
+		uint32_t i;
+
+		pw_log_debug("endpoint %p: update %d params", this, n_params);
+
+		for (i = 0; i < this->n_params; i++)
+			free(this->params[i]);
+		this->n_params = n_params;
+		this->params = realloc(this->params, this->n_params * sizeof(struct spa_pod *));
+
+		for (i = 0; i < this->n_params; i++) {
+			this->params[i] = params[i] ? spa_pod_copy(params[i]) : NULL;
+			endpoint_notify_subscribed(this, i, i+1);
+		}
+	}
+	else if (change_mask & PW_CLIENT_ENDPOINT_UPDATE_PARAMS_INCREMENTAL) {
+		uint32_t i, j;
+		const struct spa_pod_prop *pold, *pnew;
+
+		pw_log_debug("endpoint %p: update %d params incremental", this, n_params);
+
+		for (i = 0; i < this->n_params; i++) {
+			/* we only support incremental updates for controls */
+			if (!spa_pod_is_object_id (this->params[i], PW_ENDPOINT_PARAM_Control))
+				continue;
+
+			for (j = 0; j < n_params; j++) {
+				if (!spa_pod_is_object_id (params[j], PW_ENDPOINT_PARAM_Control)) {
+					pw_log_warn ("endpoint %p: ignoring incremental update "
+						"on non-control param", this);
+					continue;
+				}
+
+				pold = spa_pod_object_find_prop (
+					(const struct spa_pod_object *) this->params[i],
+					NULL, PW_ENDPOINT_PARAM_CONTROL_id);
+				pnew = spa_pod_object_find_prop (
+					(const struct spa_pod_object *) params[j],
+					NULL, PW_ENDPOINT_PARAM_CONTROL_id);
+
+				if (pold && pnew && spa_pod_compare (&pold->value, &pnew->value) == 0) {
+					free (this->params[i]);
+					this->params[i] = spa_pod_copy (params[j]);
+					endpoint_notify_subscribed(this, i, UINT32_MAX);
+				}
+			}
+		}
+	}
+
+	if (change_mask & PW_CLIENT_ENDPOINT_UPDATE_INFO) {
+		struct pw_global *global = this->global;
+		struct pw_resource *resource;
+
+		if (info->change_mask & PW_ENDPOINT_CHANGE_MASK_PARAMS) {
+			size_t size = info->n_params * sizeof(struct spa_param_info);
+			free(this->info.params);
+			this->info.params = malloc(size);
+			this->info.n_params = info->n_params;
+			memcpy(this->info.params, info->params, size);
+		}
+
+		if (info->change_mask & PW_ENDPOINT_CHANGE_MASK_PROPS) {
+			pw_properties_update(this->props, info->props);
+		}
+
+		this->info.change_mask = info->change_mask;
+		spa_list_for_each(resource, &global->resource_list, link) {
+			pw_endpoint_resource_info(resource, &this->info);
+		}
+		this->info.change_mask = 0;
+	}
+
+	return 0;
+}
+
+static struct pw_client_endpoint_proxy_methods client_endpoint_methods = {
+	PW_VERSION_CLIENT_ENDPOINT_PROXY_METHODS,
+	.update = client_endpoint_update,
+};
+
+static void
+client_endpoint_resource_destroy(void *data)
+{
+	struct pw_client_endpoint *this = data;
+
+	pw_log_debug("client-endpoint %p: destroy", this);
+
+	pw_endpoint_clear(&this->endpoint);
+
+	this->owner_resource = NULL;
+	spa_hook_remove(&this->owner_resource_listener);
+	free(this);
+}
+
+static const struct pw_resource_events owner_resource_events = {
+	PW_VERSION_RESOURCE_EVENTS,
+	.destroy = client_endpoint_resource_destroy,
+};
+
+struct pw_client_endpoint *
+pw_client_endpoint_new(struct pw_resource *owner_resource,
+			struct pw_global *parent,
+			struct pw_properties *properties)
+{
+	struct pw_client_endpoint *this;
+	struct pw_client *owner = pw_resource_get_client(owner_resource);
+	struct pw_core *core = pw_client_get_core(owner);
+
+	this = calloc(1, sizeof(struct pw_client_endpoint));
+	if (this == NULL)
+		return NULL;
+
+	pw_log_debug("client-endpoint %p: new", this);
+
+	if (pw_endpoint_init(&this->endpoint, core, owner, parent, properties) < 0)
+		goto error_no_endpoint;
+	this->endpoint.client_ep = this;
+
+	this->owner_resource = owner_resource;
+	pw_resource_add_listener(this->owner_resource,
+				 &this->owner_resource_listener,
+				 &owner_resource_events,
+				 this);
+	pw_resource_set_implementation(this->owner_resource,
+				       &client_endpoint_methods,
+				       this);
+
+	return this;
+
+      error_no_endpoint:
+	pw_resource_destroy(owner_resource);
+	free(this);
+	return NULL;
+}
+
+void
+pw_client_endpoint_destroy(struct pw_client_endpoint *this)
+{
+	pw_resource_destroy(this->owner_resource);
+}
diff --git a/src/modules/module-endpoint/endpoint-impl.h b/src/modules/module-endpoint/endpoint-impl.h
new file mode 100644
index 00000000..059aa904
--- /dev/null
+++ b/src/modules/module-endpoint/endpoint-impl.h
@@ -0,0 +1,52 @@
+/* PipeWire
+ *
+ * Copyright © 2019 Collabora Ltd.
+ *   @author George Kiagiadakis <george.kiagiadakis@collabora.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ */
+
+#ifndef PIPEWIRE_ENDPOINT_IMPL_H
+#define PIPEWIRE_ENDPOINT_IMPL_H
+
+#include <pipewire/pipewire.h>
+#include <extensions/endpoint.h>
+#include <extensions/client-endpoint.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+struct pw_endpoint;
+struct pw_client_endpoint;
+
+struct pw_client_endpoint *
+pw_client_endpoint_new(struct pw_resource *resource,
+			struct pw_global *parent,
+			struct pw_properties *properties);
+
+void
+pw_client_endpoint_destroy(struct pw_client_endpoint *endpoint);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* PIPEWIRE_ENDPOINT_IMPL_H */
diff --git a/src/modules/module-endpoint/protocol-native.c b/src/modules/module-endpoint/protocol-native.c
new file mode 100644
index 00000000..a41d3119
--- /dev/null
+++ b/src/modules/module-endpoint/protocol-native.c
@@ -0,0 +1,472 @@
+/* PipeWire
+ *
+ * Copyright © 2019 Collabora Ltd.
+ *   @author George Kiagiadakis <george.kiagiadakis@collabora.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ */
+
+#include <pipewire/pipewire.h>
+#include <spa/pod/parser.h>
+
+#include <extensions/client-endpoint.h>
+#include <extensions/endpoint.h>
+#include <extensions/protocol-native.h>
+
+static void
+serialize_pw_endpoint_info(struct spa_pod_builder *b,
+			   const struct pw_endpoint_info *info)
+{
+	struct spa_pod_frame f;
+	uint32_t i, n_props;
+
+	n_props = info->props ? info->props->n_items : 0;
+
+	spa_pod_builder_push_struct(b, &f);
+	spa_pod_builder_add(b,
+		SPA_POD_Id(info->id),
+		SPA_POD_Int(info->change_mask),
+		SPA_POD_Int(info->n_params),
+		SPA_POD_Int(n_props),
+		NULL);
+
+	for (i = 0; i < info->n_params; i++) {
+		spa_pod_builder_add(b,
+			SPA_POD_Id(info->params[i].id),
+			SPA_POD_Int(info->params[i].flags), NULL);
+	}
+
+	for (i = 0; i < n_props; i++) {
+		spa_pod_builder_add(b,
+			SPA_POD_String(info->props->items[i].key),
+			SPA_POD_String(info->props->items[i].value),
+			NULL);
+	}
+
+	spa_pod_builder_pop(b, &f);
+}
+
+/* macro because of alloca() */
+#define deserialize_pw_endpoint_info(p, f, info) \
+do { \
+	if (spa_pod_parser_push_struct(p, f) < 0 || \
+	    spa_pod_parser_get(p, \
+	    		SPA_POD_Id(&(info)->id), \
+			SPA_POD_Int(&(info)->change_mask), \
+			SPA_POD_Int(&(info)->n_params), \
+			SPA_POD_Int(&(info)->props->n_items), \
+			NULL) < 0) \
+		return -EINVAL; \
+	\
+	if ((info)->n_params > 0) \
+		(info)->params = alloca((info)->n_params * sizeof(struct spa_param_info)); \
+	if ((info)->props->n_items > 0) \
+		(info)->props->items = alloca((info)->props->n_items * sizeof(struct spa_dict_item)); \
+	\
+	for (i = 0; i < (info)->n_params; i++) { \
+		if (spa_pod_parser_get(p, \
+				SPA_POD_Id(&(info)->params[i].id), \
+				SPA_POD_Int(&(info)->params[i].flags), \
+				NULL) < 0) \
+			return -EINVAL; \
+	} \
+	\
+	for (i = 0; i < (info)->props->n_items; i++) { \
+		if (spa_pod_parser_get(p, \
+				SPA_POD_String(&(info)->props->items[i].key), \
+				SPA_POD_String(&(info)->props->items[i].value), \
+				NULL) < 0) \
+			return -EINVAL; \
+	} \
+	\
+	spa_pod_parser_pop(p, f); \
+} while(0)
+
+static int
+endpoint_marshal_subscribe_params(void *object, uint32_t *ids, uint32_t n_ids)
+{
+	struct pw_proxy *proxy = object;
+	struct spa_pod_builder *b;
+
+	b = pw_protocol_native_begin_proxy(proxy,
+		PW_ENDPOINT_PROXY_METHOD_SUBSCRIBE_PARAMS, NULL);
+
+	spa_pod_builder_add_struct(b,
+			SPA_POD_Array(sizeof(uint32_t), SPA_TYPE_Id, n_ids, ids));
+
+	return pw_protocol_native_end_proxy(proxy, b);
+}
+
+static int
+endpoint_demarshal_subscribe_params(void *object, const struct pw_protocol_native_message *msg)
+{
+	struct pw_resource *resource = object;
+	struct spa_pod_parser prs;
+	uint32_t csize, ctype, n_ids;
+	uint32_t *ids;
+
+	spa_pod_parser_init(&prs, msg->data, msg->size);
+	if (spa_pod_parser_get_struct(&prs,
+				SPA_POD_Array(&csize, &ctype, &n_ids, &ids)) < 0)
+		return -EINVAL;
+
+	if (ctype != SPA_TYPE_Id)
+		return -EINVAL;
+
+	return pw_resource_do(resource, struct pw_endpoint_proxy_methods,
+			subscribe_params, 0, ids, n_ids);
+}
+
+static int
+endpoint_marshal_enum_params(void *object, int seq, uint32_t id,
+		uint32_t index, uint32_t num, const struct spa_pod *filter)
+{
+	struct pw_proxy *proxy = object;
+	struct spa_pod_builder *b;
+
+	b = pw_protocol_native_begin_proxy(proxy,
+		PW_ENDPOINT_PROXY_METHOD_ENUM_PARAMS, NULL);
+
+	spa_pod_builder_add_struct(b,
+			SPA_POD_Int(seq),
+			SPA_POD_Id(id),
+			SPA_POD_Int(index),
+			SPA_POD_Int(num),
+			SPA_POD_Pod(filter));
+
+	return pw_protocol_native_end_proxy(proxy, b);
+}
+
+static int
+endpoint_demarshal_enum_params(void *object, const struct pw_protocol_native_message *msg)
+{
+	struct pw_resource *resource = object;
+	struct spa_pod_parser prs;
+	uint32_t id, index, num;
+	int seq;
+	struct spa_pod *filter;
+
+	spa_pod_parser_init(&prs, msg->data, msg->size);
+	if (spa_pod_parser_get_struct(&prs,
+				SPA_POD_Int(&seq),
+				SPA_POD_Id(&id),
+				SPA_POD_Int(&index),
+				SPA_POD_Int(&num),
+				SPA_POD_Pod(&filter)) < 0)
+		return -EINVAL;
+
+	return pw_resource_do(resource, struct pw_endpoint_proxy_methods,
+			enum_params, 0, seq, id, index, num, filter);
+}
+
+static int
+endpoint_marshal_set_param(void *object, uint32_t id, uint32_t flags,
+		const struct spa_pod *param)
+{
+	struct pw_proxy *proxy = object;
+	struct spa_pod_builder *b;
+
+	b = pw_protocol_native_begin_proxy(proxy,
+		PW_ENDPOINT_PROXY_METHOD_SET_PARAM, NULL);
+
+	spa_pod_builder_add_struct(b,
+			SPA_POD_Id(id),
+			SPA_POD_Int(flags),
+			SPA_POD_Pod(param));
+	return pw_protocol_native_end_proxy(proxy, b);
+}
+
+static int
+endpoint_demarshal_set_param(void *object, const struct pw_protocol_native_message *msg)
+{
+	struct pw_resource *resource = object;
+	struct spa_pod_parser prs;
+	uint32_t id, flags;
+	struct spa_pod *param;
+
+	spa_pod_parser_init(&prs, msg->data, msg->size);
+	if (spa_pod_parser_get_struct(&prs,
+				SPA_POD_Id(&id),
+				SPA_POD_Int(&flags),
+				SPA_POD_Pod(&param)) < 0)
+		return -EINVAL;
+
+	return pw_resource_do(resource, struct pw_endpoint_proxy_methods,
+			set_param, 0, id, flags, param);
+}
+
+static void
+endpoint_marshal_info(void *object, const struct pw_endpoint_info *info)
+{
+	struct pw_resource *resource = object;
+	struct spa_pod_builder *b;
+
+	b = pw_protocol_native_begin_resource(resource,
+			PW_ENDPOINT_PROXY_EVENT_INFO, NULL);
+	serialize_pw_endpoint_info (b, info);
+	pw_protocol_native_end_resource(resource, b);
+}
+
+static int
+endpoint_demarshal_info(void *object, const struct pw_protocol_native_message *msg)
+{
+	struct pw_proxy *proxy = object;
+	struct spa_pod_parser prs;
+	struct spa_pod_frame f;
+	struct spa_dict props = SPA_DICT_INIT(NULL, 0);
+	struct pw_endpoint_info info = { .props = &props };
+	uint32_t i;
+
+	spa_pod_parser_init(&prs, msg->data, msg->size);
+
+	deserialize_pw_endpoint_info(&prs, &f, &info);
+
+	return pw_proxy_notify(proxy, struct pw_endpoint_proxy_events,
+		info, 0, &info);
+}
+
+static void
+endpoint_marshal_param(void *object, int seq, uint32_t id,
+		uint32_t index, uint32_t next, const struct spa_pod *param)
+{
+	struct pw_resource *resource = object;
+	struct spa_pod_builder *b;
+
+	b = pw_protocol_native_begin_resource(resource,
+			PW_ENDPOINT_PROXY_EVENT_PARAM, NULL);
+
+	spa_pod_builder_add_struct(b,
+			SPA_POD_Int(seq),
+			SPA_POD_Id(id),
+			SPA_POD_Int(index),
+			SPA_POD_Int(next),
+			SPA_POD_Pod(param));
+
+	pw_protocol_native_end_resource(resource, b);
+}
+
+static int
+endpoint_demarshal_param(void *object, const struct pw_protocol_native_message *msg)
+{
+	struct pw_proxy *proxy = object;
+	struct spa_pod_parser prs;
+	uint32_t id, index, next;
+	int seq;
+	struct spa_pod *param;
+
+	spa_pod_parser_init(&prs, msg->data, msg->size);
+	if (spa_pod_parser_get_struct(&prs,
+				SPA_POD_Int(&seq),
+				SPA_POD_Id(&id),
+				SPA_POD_Int(&index),
+				SPA_POD_Int(&next),
+				SPA_POD_Pod(&param)) < 0)
+		return -EINVAL;
+
+	return pw_proxy_notify(proxy, struct pw_endpoint_proxy_events, param, 0,
+			seq, id, index, next, param);
+}
+
+static const struct pw_endpoint_proxy_methods pw_protocol_native_endpoint_method_marshal = {
+	PW_VERSION_ENDPOINT_PROXY_METHODS,
+	&endpoint_marshal_subscribe_params,
+	&endpoint_marshal_enum_params,
+	&endpoint_marshal_set_param,
+};
+
+static const struct pw_protocol_native_demarshal pw_protocol_native_endpoint_method_demarshal[] = {
+	{ &endpoint_demarshal_subscribe_params, 0 },
+	{ &endpoint_demarshal_enum_params, 0 },
+	{ &endpoint_demarshal_set_param, 0 }
+};
+
+static const struct pw_endpoint_proxy_events pw_protocol_native_endpoint_event_marshal = {
+	PW_VERSION_ENDPOINT_PROXY_EVENTS,
+	&endpoint_marshal_info,
+	&endpoint_marshal_param,
+};
+
+static const struct pw_protocol_native_demarshal pw_protocol_native_endpoint_event_demarshal[] = {
+	{ &endpoint_demarshal_info, 0 },
+	{ &endpoint_demarshal_param, 0 }
+};
+
+static const struct pw_protocol_marshal pw_protocol_native_endpoint_marshal = {
+	PW_TYPE_INTERFACE_Endpoint,
+	PW_VERSION_ENDPOINT,
+	PW_ENDPOINT_PROXY_METHOD_NUM,
+	PW_ENDPOINT_PROXY_EVENT_NUM,
+	&pw_protocol_native_endpoint_method_marshal,
+	&pw_protocol_native_endpoint_method_demarshal,
+	&pw_protocol_native_endpoint_event_marshal,
+	&pw_protocol_native_endpoint_event_demarshal,
+};
+
+
+static int
+client_endpoint_marshal_update(
+	void *object,
+	uint32_t change_mask,
+	uint32_t n_params,
+	const struct spa_pod **params,
+	const struct pw_endpoint_info *info)
+{
+	struct pw_proxy *proxy = object;
+	struct spa_pod_builder *b;
+	struct spa_pod_frame f;
+	uint32_t i;
+
+	b = pw_protocol_native_begin_proxy(proxy,
+		PW_CLIENT_ENDPOINT_PROXY_METHOD_UPDATE, NULL);
+
+	spa_pod_builder_push_struct(b, &f);
+	spa_pod_builder_add(b,
+		SPA_POD_Int(change_mask),
+		SPA_POD_Int(n_params), NULL);
+
+	for (i = 0; i < n_params; i++)
+		spa_pod_builder_add(b, SPA_POD_Pod(params[i]), NULL);
+
+	if (change_mask & PW_CLIENT_ENDPOINT_UPDATE_INFO)
+		serialize_pw_endpoint_info(b, info);
+
+	spa_pod_builder_pop(b, &f);
+
+	return pw_protocol_native_end_proxy(proxy, b);
+}
+
+static int
+client_endpoint_demarshal_update(void *object,
+	const struct pw_protocol_native_message *msg)
+{
+	struct pw_resource *resource = object;
+	struct spa_pod_parser prs;
+	struct spa_pod_frame f[2];
+	uint32_t change_mask, n_params;
+	const struct spa_pod **params = NULL;
+	struct spa_dict props = SPA_DICT_INIT(NULL, 0);
+	struct pw_endpoint_info info = { .props = &props };
+	uint32_t i;
+
+	spa_pod_parser_init(&prs, msg->data, msg->size);
+	if (spa_pod_parser_push_struct(&prs, &f[0]) < 0 ||
+	    spa_pod_parser_get(&prs,
+			SPA_POD_Int(&change_mask),
+			SPA_POD_Int(&n_params), NULL) < 0)
+		return -EINVAL;
+
+	if (n_params > 0)
+		params = alloca(n_params * sizeof(struct spa_pod *));
+	for (i = 0; i < n_params; i++)
+		if (spa_pod_parser_get(&prs,
+				SPA_POD_PodObject(&params[i]), NULL) < 0)
+			return -EINVAL;
+
+	if (change_mask & PW_CLIENT_ENDPOINT_UPDATE_INFO)
+		deserialize_pw_endpoint_info(&prs, &f[1], &info);
+
+	pw_resource_do(resource, struct pw_client_endpoint_proxy_methods,
+		update, 0, change_mask, n_params, params, &info);
+	return 0;
+}
+
+static void
+client_endpoint_marshal_set_param (void *object,
+	uint32_t id, uint32_t flags,
+	const struct spa_pod *param)
+{
+	struct pw_resource *resource = object;
+	struct spa_pod_builder *b;
+
+	b = pw_protocol_native_begin_resource(resource,
+		PW_CLIENT_ENDPOINT_PROXY_EVENT_SET_PARAM, NULL);
+
+	spa_pod_builder_add_struct(b,
+				SPA_POD_Id(id),
+				SPA_POD_Int(flags),
+				SPA_POD_Pod(param));
+
+	pw_protocol_native_end_resource(resource, b);
+}
+
+static int
+client_endpoint_demarshal_set_param(void *object,
+	const struct pw_protocol_native_message *msg)
+{
+	struct pw_proxy *proxy = object;
+	struct spa_pod_parser prs;
+	uint32_t id, flags;
+	const struct spa_pod *param = NULL;
+
+	spa_pod_parser_init(&prs, msg->data, msg->size);
+	if (spa_pod_parser_get_struct(&prs,
+			SPA_POD_Id(&id),
+			SPA_POD_Int(&flags),
+			SPA_POD_PodObject(&param)) < 0)
+		return -EINVAL;
+
+	pw_proxy_notify(proxy, struct pw_client_endpoint_proxy_events,
+			set_param, 0, id, flags, param);
+	return 0;
+}
+
+static const struct pw_client_endpoint_proxy_methods pw_protocol_native_client_endpoint_method_marshal = {
+	PW_VERSION_CLIENT_ENDPOINT_PROXY_METHODS,
+	&client_endpoint_marshal_update,
+};
+
+static const struct pw_protocol_native_demarshal pw_protocol_native_client_endpoint_method_demarshal[] = {
+	{ &client_endpoint_demarshal_update, 0 }
+};
+
+static const struct pw_client_endpoint_proxy_events pw_protocol_native_client_endpoint_event_marshal = {
+	PW_VERSION_CLIENT_ENDPOINT_PROXY_EVENTS,
+	&client_endpoint_marshal_set_param,
+};
+
+static const struct pw_protocol_native_demarshal pw_protocol_native_client_endpoint_event_demarshal[] = {
+	{ &client_endpoint_demarshal_set_param, 0 }
+};
+
+static const struct pw_protocol_marshal pw_protocol_native_client_endpoint_marshal = {
+	PW_TYPE_INTERFACE_ClientEndpoint,
+	PW_VERSION_CLIENT_ENDPOINT,
+	PW_CLIENT_ENDPOINT_PROXY_METHOD_NUM,
+	PW_CLIENT_ENDPOINT_PROXY_EVENT_NUM,
+	&pw_protocol_native_client_endpoint_method_marshal,
+	&pw_protocol_native_client_endpoint_method_demarshal,
+	&pw_protocol_native_client_endpoint_event_marshal,
+	&pw_protocol_native_client_endpoint_event_demarshal,
+};
+
+struct pw_protocol *pw_protocol_native_ext_endpoint_init(struct pw_core *core)
+{
+	struct pw_protocol *protocol;
+
+	protocol = pw_core_find_protocol(core, PW_TYPE_INFO_PROTOCOL_Native);
+
+	if (protocol == NULL)
+		return NULL;
+
+	pw_protocol_add_marshal(protocol, &pw_protocol_native_client_endpoint_marshal);
+	pw_protocol_add_marshal(protocol, &pw_protocol_native_endpoint_marshal);
+
+	return protocol;
+}
diff --git a/src/pipewire/pipewire.c b/src/pipewire/pipewire.c
index a8752438..bbbf9420 100644
--- a/src/pipewire/pipewire.c
+++ b/src/pipewire/pipewire.c
@@ -647,6 +647,8 @@ static const struct spa_type_info type_info[] = {
 	{ PW_TYPE_INTERFACE_Module, SPA_TYPE_Pointer, PW_TYPE_INFO_INTERFACE_BASE "Module", NULL },
 	{ PW_TYPE_INTERFACE_ClientNode, SPA_TYPE_Pointer, PW_TYPE_INFO_INTERFACE_BASE "ClientNode", NULL },
 	{ PW_TYPE_INTERFACE_Device, SPA_TYPE_Pointer, PW_TYPE_INFO_INTERFACE_BASE "Device", NULL },
+	{ PW_TYPE_INTERFACE_Endpoint, SPA_TYPE_Pointer, PW_TYPE_INFO_INTERFACE_BASE "Endpoint", NULL},
+	{ PW_TYPE_INTERFACE_ClientEndpoint, SPA_TYPE_Pointer, PW_TYPE_INFO_INTERFACE_BASE "ClientEndpoint", NULL},
 	{ SPA_ID_INVALID, SPA_ID_INVALID, "spa_types", spa_types },
 	{ 0, 0, NULL, NULL },
 };
diff --git a/src/pipewire/type.h b/src/pipewire/type.h
index a1b205f7..39544913 100644
--- a/src/pipewire/type.h
+++ b/src/pipewire/type.h
@@ -48,7 +48,8 @@ enum {
 	/* extensions */
 	PW_TYPE_INTERFACE_EXTENSIONS = PW_TYPE_INTERFACE_START + 0x1000,
 	PW_TYPE_INTERFACE_ClientNode,
-
+	PW_TYPE_INTERFACE_Endpoint,
+	PW_TYPE_INTERFACE_ClientEndpoint,
 };
 
 #define PW_TYPE_INFO_BASE		"PipeWire:"
-- 
2.20.1