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
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
|
/**
* \file xine.h
* \author Guenter Bartsch <guenter@users.sourceforge.net>
* \author Siegfried Langauf <siggi@users.sourceforge.net>
* \author Daniel Caujolle-Bert <f1rmb@users.sourceforge.net>
* \date 16/09/2001
*
* API of XINE library.
\verbatim
Copyright (C) 2000-2001 the xine project
This file is part of xine, a unix video player.
xine 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; either version 2 of the License, or
(at your option) any later version.
xine 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, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
\endverbatim
*/
/*
* $Id: xine.h.tmpl.in,v 1.56 2001/11/20 17:22:13 miguelfreitas Exp $
*
*/
#ifndef HAVE_XINE_H
#define HAVE_XINE_H
#ifdef __cplusplus
extern "C" {
#endif
#include <inttypes.h>
#include <unistd.h>
#include <sys/types.h>
#include <xine/events.h>
/**
* \def XINE_SKINDIR
* Skin file location
*/
#define XINE_SKINDIR "@XINE_SKINPATH@"
/**
* \defgroup build_info Build informations
* @{
*/
/**
* \def XINE_BUILD_CC
* Compiler used to build xine-lib
*/
#define XINE_BUILD_CC "@XINE_BUILD_CC@"
/** \def XINE_BUILD_OS
* OS used to build xine-lib
*/
#define XINE_BUILD_OS "@XINE_BUILD_OS@"
/** \def XINE_BUILD_DATE
* Build time
*/
#define XINE_BUILD_DATE "@XINE_BUILD_DATE@"
/** @} end of build_info */
/**
* \defgroup xine_api API functions
* @{
*/
/**
* \defgroup status_group Player status constants
* @{
*/
/**
* \def XINE_STOP
* Stop status.
* \sa xine_get_status()
*/
#define XINE_STOP 0
/**
* \def XINE_PLAY
* Play status.
* \sa xine_get_status()
*/
#define XINE_PLAY 1
/**
* \def XINE_QUIT
* Quit status.
* \sa xine_get_status()
*/
#define XINE_QUIT 2
/** @} end of status_group */
/**
* \defgroup version_group Version constants
* @{
*/
/**
* \def XINE_MAJOR_VERSION
* Major version constant.
*/
#define XINE_MAJOR_VERSION @XINE_MAJOR@
/**
* \def XINE_MINOR_VERSION
* Minor version constant.
*/
#define XINE_MINOR_VERSION @XINE_MINOR@
/**
* \def XINE_SUB_VERSION
* Sub version constant.
*/
#define XINE_SUB_VERSION @XINE_SUB@
/** @} end of version_group */
/**
* \defgroup xine_version Version functions
* @{
*/
/**
* \fn char *xine_get_str_version(void);
* \brief return string version, like "0.5.0"
* \param None.
* \return string version
*
*/
char *xine_get_str_version(void);
/**
* \fn int xine_get_major_version(void);
* \brief return version information
* \param None.
* \return major version.
*
*/
int xine_get_major_version(void);
/**
* \fn int xine_get_minor_version(void);
* \brief return version information
* \param None.
* \return minor version.
*
*/
int xine_get_minor_version(void);
/**
* \fn int xine_get_sub_version(void);
* \brief return version information
* \param None.
* \return sub version.
*
*/
int xine_get_sub_version(void);
/**
* \fn int xine_check_version(int major, int minor, int sub);
* \brief check minimal version.
* \param major major version wanted.
* \param minorr minor version wanted.
* \param sub sub version wanted.
* \return 1 if installed version is >= to desired, otherwise 0
*
* Compare version numbers with xine installed version.
*/
int xine_check_version(int major, int minor, int sub);
/** @} end of xine_version */
/**
* \defgroup video_group Video.
* @{
*/
/**
*
* \defgroup video_cap video driver capabilities
* @{
*/
/**
* \def VO_CAP_HUE
* Driver can set HUE value.
*/
#define VO_CAP_HUE 0x00000010
/**
* \def VO_CAP_SATURATION
* Driver can set SATURATION value.
*/
#define VO_CAP_SATURATION 0x00000020
/**
* \def VO_CAP_BRIGHTNESS
* Driver can set BRIGHTNESS value.
*/
#define VO_CAP_BRIGHTNESS 0x00000040
/**
* \def VO_CAP_CONTRAST
* Driver can set CONTRAST value.
*/
#define VO_CAP_CONTRAST 0x00000080
/**
* \def VO_CAP_COLORKEY
* Driver can set COLORKEY value.
*/
#define VO_CAP_COLORKEY 0x00000100
/** @} end of video_cap */
/**
*
* \defgroup video_prop Constants for the get/set properties functions.
* @{
*/
/**
* \def VO_PROP_INTERLACED
* Interleave property.
* \sa vo_driver_t
*/
#define VO_PROP_INTERLACED 0
/**
* \def VO_PROP_ASPECT_RATIO
* Aspect ratio property.
* \sa vo_driver_t, video_ratio
*/
#define VO_PROP_ASPECT_RATIO 1
/**
* \def VO_PROP_HUE
* Hue property.
* \sa vo_driver_t
*/
#define VO_PROP_HUE 2
/**
* \def VO_PROP_SATURATION
* Saturation property.
* \sa vo_driver_t
*/
#define VO_PROP_SATURATION 3
/**
* \def VO_PROP_CONTRAST
* Contrast property.
* \sa vo_driver_t
*/
#define VO_PROP_CONTRAST 4
/**
* \def VO_PROP_BRIGHTNESS
* Brightness property.
* \sa vo_driver_t
*/
#define VO_PROP_BRIGHTNESS 5
/**
* \def VO_PROP_COLORKEY
* Colorkey property.
* \sa vo_driver_t
*/
#define VO_PROP_COLORKEY 6
/**
* \def VO_PROP_ZOOM_X
* Horizontal zoom property.
* \sa vo_driver_t
*/
#define VO_PROP_ZOOM_X 7
/**
* \def VO_PROP_ZOOM_Y
* Vertical zoom property.
* \sa vo_driver_t
*/
#define VO_PROP_ZOOM_Y 8
/**
* \def VO_PROP_OFFSET_X
* Horizontal offset property.
* \sa vo_driver_t
*/
#define VO_PROP_OFFSET_X 9
/**
* \def VO_PROP_OFFSET_Y
* Vertical offset property.
* \sa vo_driver_t
*/
#define VO_PROP_OFFSET_Y 10
/**
* \def VO_PROP_TVMODE
* Change TVmode property.
* \sa vo_driver_t
*/
#define VO_PROP_TVMODE 11
/**
* \def VO_NUM_PROPERTIES
* Number of available properties property.
* \sa vo_driver_t
*/
#define VO_NUM_PROPERTIES 12
/** @} end of video_prop */
/**
* \defgroup video_zoom Zoom related constants
* \sa VO_PROP_ASPECT_RATIO, vo_driver_t
* @{
*/
/**
* \def ZOOM_STEP
* Step for the zoom feature
* \sa VO_PROP_ZOOM_X
*/
#define ZOOM_STEP 100
/**
* \def ZOOM_MAX
* Max value for zoom properties
* \sa VO_PROP_ZOOM_X
*/
#define ZOOM_MAX 400
/**
* \def ZOOM_MIN
* Min value for zoom properties
* \sa VO_PROP_ZOOM_X
*/
#define ZOOM_MIN -85
/** @} end of video_zoom */
/**
* \defgroup video_ratio Possible ratios for the VO_PROP_ASPECT_RATIO call
* \sa VO_PROP_ASPECT_RATIO, vo_driver_t
* @{
*/
/**
* \def ASPECT_AUTO
* Let video driver guessing aspect ratio.
* \sa VO_PROP_ASPECT_RATIO
*/
#define ASPECT_AUTO 0
/**
* \def ASPECT_ANAMORPHIC
* Set aspect ration to 16:9.
* \sa VO_PROP_ASPECT_RATIO
*/
#define ASPECT_ANAMORPHIC 1
/**
* \def ASPECT_FULL
* Set aspect ration to 4:3.
* \sa VO_PROP_ASPECT_RATIO
*/
#define ASPECT_FULL 2
/**
* \def ASPECT_DVB
* Set aspect ration to 1:2.
* \sa VO_PROP_ASPECT_RATIO
*/
#define ASPECT_DVB 3
/**
* \def ASPECT_SQUARE
* Set aspect ration to square pels.
* \sa VO_PROP_ASPECT_RATIO
*/
#define ASPECT_SQUARE 4
/**
* \def NUM_ASPECT_RATIOS
* Number of aspect ratios supported for VO_PROP_ASPECT_RATIO property.
* \sa VO_PROP_ASPECT_RATIO
*/
#define NUM_ASPECT_RATIOS 5
/** @} end of video_ratio */
/**
* \struct vo_frame_t
* Opaque data type.
* \sa vo_driver_t
*/
typedef void vo_frame_t;
/**
* \struct vo_overlay_t
* Opaque data type.
* \sa vo_driver_t
*/
typedef void vo_overlay_t;
/**
* \struct vo_driver_t
* \brief Data type of structure vo_driver_s.
* \sa structure vo_driver_s.
*/
typedef struct vo_driver_s vo_driver_t;
/**
* \struct vo_driver_s
* Video driver fonctions.
*/
struct vo_driver_s {
/**
* Get capabilities of video driver.
* \sa video_cap
*/
uint32_t (*get_capabilities) (vo_driver_t *self);
/**
* Allocate an vo_frame_t struct,
* the driver must supply the copy, field and dispose functions
*/
vo_frame_t* (*alloc_frame) (vo_driver_t *self);
/**
* Check if the given image fullfills the format specified
* (re-)allocate memory if necessary
*/
void (*update_frame_format) (vo_driver_t *self, vo_frame_t *img,
uint32_t width, uint32_t height,
int ratio_code, int format);
/**
* Display a given frame
*/
void (*display_frame) (vo_driver_t *self, vo_frame_t *vo_img);
/**
* Overlay functions
*/
void (*overlay_blend) (vo_driver_t *self, vo_frame_t *vo_img, vo_overlay_t *overlay);
/**
* These can be used by the gui directly:
*/
/**
* Get value if property.
* \sa video_prop
*/
int (*get_property) (vo_driver_t *self, int property);
/**
* Set value of property.
* \sa video_prop
*/
int (*set_property) (vo_driver_t *self,
int property, int value);
/**
* Get min/max values of property.
* \sa video_prop
*/
void (*get_property_min_max) (vo_driver_t *self,
int property, int *min, int *max);
/**
* General purpose communication channel between gui and driver
*
* this should be used to propagate events, display data, window sizes
* etc. to the driver
*/
int (*gui_data_exchange) (vo_driver_t *self, int data_type,
void *data);
/**
* Leaving video driver.
*/
void (*exit) (vo_driver_t *self);
};
/** @} end of video_group */
/**
* \defgroup xine_init Init functions
* @{
*/
/**
* \defgroup config_group Configuration structure type.
* @{
*/
/**
* \struct xine_t
* Opaque data type.
* \sa xine_load_audio_output_plugin
*/
typedef void xine_t;
/**
* \struct ao_driver_t
* Opaque data type.
*/
typedef void ao_driver_t;
typedef struct cfg_entry_s cfg_entry_t;
typedef struct config_values_s config_values_t;
typedef void (*config_cb_t) (void *, cfg_entry_t *);
struct cfg_entry_s {
cfg_entry_t *next;
config_values_t *config;
char *key;
int type;
/* type unknown */
char *unknown_value;
/* type string */
char *str_value;
char *str_default;
/* common to range, enum, num, bool: */
int num_value;
int num_default;
/* type range specific: */
int range_min;
int range_max;
/* type enum specific: */
char **enum_values;
/* help info for the user */
char *description;
char *help;
/* callback function and data for live changeable values */
config_cb_t callback;
void *callback_data;
};
/*
* config entry data types
*/
#define CONFIG_TYPE_UNKNOWN 0
#define CONFIG_TYPE_RANGE 1
#define CONFIG_TYPE_STRING 2
#define CONFIG_TYPE_ENUM 3
#define CONFIG_TYPE_NUM 4
#define CONFIG_TYPE_BOOL 5
struct config_values_s {
/*
* register config values
*
* these functions return the current value of the
* registered item, i.e. the default value if it was
* not found in the config file or the current value
* from the config file otherwise
*/
char* (*register_string) (config_values_t *this,
char *key,
char *def_value,
char *description,
char *help,
config_cb_t changed_cb,
void *cb_data);
int (*register_range) (config_values_t *this,
char *key,
int def_value,
int min, int max,
char *description,
char *help,
config_cb_t changed_cb,
void *cb_data);
int (*register_enum) (config_values_t *this,
char *key,
int def_value,
char **values,
char *description,
char *help,
config_cb_t changed_cb,
void *cb_data);
int (*register_num) (config_values_t *this,
char *key,
int def_value,
char *description,
char *help,
config_cb_t changed_cb,
void *cb_data);
int (*register_bool) (config_values_t *this,
char *key,
int def_value,
char *description,
char *help,
config_cb_t changed_cb,
void *cb_data);
/* convenience function to update range, enum, num and bool values */
void (*update_num) (config_values_t *this,
char *key, int value);
/* convenience function to update string values */
void (*update_string) (config_values_t *this,
char *key, char *value);
/* small utility function for enum handling */
int (*parse_enum) (char *str, char **values);
/*
* lookup config entries
*
* remember to call the changed_cb if it exists
* and you changed the value of this item
*/
cfg_entry_t* (*lookup_entry) (config_values_t *this,
char *key);
/*
* write config file to disk
*/
void (*save) (config_values_t *this);
/*
* read config file from disk, overriding values in memory
*/
void (*read) (config_values_t *this, char *filename);
/*
* config values are stored here:
*/
cfg_entry_t *first, *last;
};
/** @} end of config_group */
/**
* \fn config_values_t *config_file_init (char *filename)
* \brief Configuration file initialisation.
* \param filename Pathname of configuration file.
* \return Current config
* \sa config_values_t
* \warning This function should be called at least one time before xine_init() call.
*
* Read config file and init a config object of config_values_t type (if it exists)
*/
config_values_t *config_file_init (char *filename);
/**
* \defgroup ui_callbacks UI communication callbacks.
* @{
*
*/
/** @} end of ui_callbacks */
/**
* \defgroup demux_strategy Possible demuxer guessing strategy.
* "demux_strategy" should be set to one of these value in configuration file ( #see @ref config_group) before xine_init() call.
* \sa config_values_t
* @{
*/
/**
* \def DEMUX_DEFAULT_STRATEGY
* Recognize by content then by extension.
* \sa config_values_t
*/
#define DEMUX_DEFAULT_STRATEGY 0
/**
* \def DEMUX_REVERT_STRATEGY
* Recognize by extension then by content.
* \sa config_values_t
*/
#define DEMUX_REVERT_STRATEGY 1
/**
* \def DEMUX_CONTENT_STRATEGY
* Recognize by content only.
* \sa config_values_t
*/
#define DEMUX_CONTENT_STRATEGY 2
/**
* \def DEMUX_EXTENSION_STRATEGY
* Recognize by extension only.
* \sa config_values_t
*/
#define DEMUX_EXTENSION_STRATEGY 3
/** @} end of demux_strategy */
/**
* \fn xine_t *xine_init (vo_driver_t *vo, ao_driver_t *ao, config_values_t *config, void *user_data);
* \brief Initialisation of xine.
* \param vo video driver ( #see @ref xine_load_video_output_plugin() )
* \param ao audio driver ( #see @ref xine_load_audio_output_plugin() )
* \param config current configuration ( #see config_file_init() )
* \return Current xine engine configuration
* \sa vo_driver_t, ao_driver_t, config_values_t, gui_stream_end_cb_t, gui_get_next_mrl_cb_t, gui_branched_cb_t
* \warning This function should be called before any other xine_*() function.
*
* Init of xine. It should called once at startup.
* all callbacks may be NULL if ui is not interested in them for whatever reason
* ao may be NULL for no audio playback
*
*/
xine_t *xine_init (vo_driver_t *vo,
ao_driver_t *ao,
config_values_t *config);
/**
* \fn void xine_exit (xine_t *self)
* \brief De-initialisation of xine
* \param self Current xine engine configuration.
* \return Nothing
* \sa xine_init()
*
* De-init xine engine.
*/
void xine_exit (xine_t *self);
/** @} end of xine_init */
/**
* \defgroup xine_management Engine management
* @{
*/
/**
* \fn void xine_play (xine_t *self, char *MRL, int start_pos, int start_time)
* \brief Start to play a stream
* \param self Current xine engine configuration ( #see xine_init() )
* \param MRL Media Resource Location to open
* \param start_pos position in input source (0..65535)
* \param start_time position measured in seconds from stream start
* \return Nothing
*
* Open a stream and play it. If both start position parameters
* are !=0 start_pos will be used
* for non-seekable streams both values will be ignored
*
*/
void xine_play (xine_t *self, char *MRL, int start_pos, int start_time);
/**
* \fn void xine_set_speed (xine_t *self, int speed)
* \brief Set playback speed.
* \param self Current xine engine configuration ( #see xine_init() )
* \param speed Desired playback speed ( #see SPEED_PAUSE, SPEED_SLOW_4, SPEED_SLOW_2, SPEED_NORMAL, SPEED_FAST_2, SPEED_FAST_4 )
* \return Nothing
*
* Set the playback speed to desired speed, according of SPEED_x constant.
*
*/
void xine_set_speed (xine_t *self, int speed);
/**
* \fn xine_get_speed (xine_t *self)
* \brief Get the playback speed.
* \param self Current xine engine configuration ( #see xine_init() )
* \return speed value ( #see SPEED_PAUSE, SPEED_SLOW_4, SPEED_SLOW_2, SPEED_NORMAL, SPEED_FAST_2, SPEED_FAST_4 )
*
* Get the current speed playback. Possible values are SPEED_PAUSE, SPEED_SLOW_4, SPEED_SLOW_2, SPEED_NORMAL, SPEED_FAST_2, SPEED_FAST_4.
*/
int xine_get_speed (xine_t *self);
/**
* \def SPEED_PAUSE
* Playback pause.
* \sa xine_set_speed(), xine_get_speed()
*/
#define SPEED_PAUSE 0
/**
* \def SPEED_SLOW_4
* Playback at 25% speed.
*\sa xine_set_speed(), xine_get_speed()
*/
#define SPEED_SLOW_4 1
/**
* \def SPEED_SLOW_2
* Playback at 50% speed.
* \sa xine_set_speed(), xine_get_speed()
*/
#define SPEED_SLOW_2 2
/**
* \def SPEED_NORMAL
* Playback at 100% speed.
* \sa xine_set_speed(), xine_get_speed()
*/
#define SPEED_NORMAL 4
/**
* \def SPEED_FAST_2
* Playback at 200% speed.
* \sa xine_set_speed(), xine_get_speed()
*/
#define SPEED_FAST_2 8
/**
* \def SPEED_FAST_4
* Playback at 400% speed.
* \sa xine_set_speed(), xine_get_speed()
*/
#define SPEED_FAST_4 16
/**
* \fn void xine_set_av_offset (xine_t *self, int offset_pts)
* \brief Set audio/video sync.
* \param self Current xine engine configuration ( #see xine_init() )
* \param offset_pts New pts.
* \return Nothing
*
* Set audio/video sync offset, according to offset_pts value ( #see xine_get_av_offset() ).
*/
void xine_set_av_offset (xine_t *self, int offset_pts);
/**
* \fn int xine_get_av_offset (xine_t *self)
* \brief Get audio/video sync.
* \param self Current xine engine configuration ( #see xine_init() )
* \return Current audio/video offset.
*
* Return the current audio/video sync offset ( #see xine_set_av_offset() ).
*/
int xine_get_av_offset (xine_t *self);
/**
* \fn void xine_stop (xine_t *self)
* \brief Stop playing
* \param self Current xine engine configuration ( #see xine_init() )
* \return Nothing
*
* Stop the playback.
*/
void xine_stop (xine_t *self);
/**
* \fn int xine_eject(xine_t *self)
* \brief Eject media
* \param self Current xine engine configuration ( #see xine_init() )
* \return 1 on success, 0 on failure.
*
* Tell current input plugin to eject media.
*/
int xine_eject(xine_t *self);
/**
* \fn int xine_get_status (xine_t *self)
* \brief Get current xine status
* \param self Current xine engine configuration ( #see xine_init() )
* \return Current status ( #see @ref status_group )
*
* Return the current state of xine engine.
*/
int xine_get_status (xine_t *self);
/**
* \fn int xine_get_current_position (xine_t *self)
* \brief Get current position
* \param self Current xine engine configuration ( #see xine_init() )
* \return Current position ( 0..65535 )
*
* Get current position in stream.
*/
int xine_get_current_position (xine_t *self);
/**
* \fn int xine_get_current_time (xine_t *self)
* \brief get current pos in seconds
* \param self Current xine engine configuration ( #see xine_init() )
* \return current position measured in seconds from the beginning of the stream
*
* get current position measured in seconds from the beginning of the stream
*/
int xine_get_current_time (xine_t *self);
/**
* \fn int xine_get_stream_length (xine_t *self);
* \brief estimate length of input stream in seconds
* \param self Current xine engine configuration ( #see xine_init() )
* \return length of input stream in seconds or 0 if stream is not seekable
*
* estimate length of input stream in seconds
*/
int xine_get_stream_length (xine_t *self);
/**
* \fn void xine_select_audio_channel (xine_t *self, int channel)
* \brief Set logical audio channel (-1 => auto)
* \param self Current xine engine configuration ( #see xine_init() )
* \return Nothing
*
* Set desired audio channel.
*/
void xine_select_audio_channel (xine_t *self, int channel);
/**
* \fn int xine_get_audio_selection (xine_t *self)
* \brief Get current logical audio channel
* \param self Current xine engine configuration ( #see xine_init() )
* \return Current audio channel
*
* Get current audio channel.
*/
int xine_get_audio_selection (xine_t *self);
/**
* \fn void xine_get_audio_lang (xine_t *self, char *str)
* \brief try to find out current audio language
* \param self current xine engine configuration ( #see xine_init() )
* \param str current audio language or number
*
* try to find out current audio language
*/
void xine_get_audio_lang (xine_t *self, char *str);
/**
* \fn int xine_get_spu_channel (xine_t *self)
* \brief get current sub-title channel.
* \param self current xine engine configuration ( #see xine_init() )
* \return current sub-title channel
*
* Get current sub-title channel.
*/
int xine_get_spu_channel (xine_t *self);
/**
* \fn void xine_get_spu_lang (xine_t *self, char *str)
* \brief try to find out current spu language
* \param self current xine engine configuration ( #see xine_init() )
* \param str current spu language or number
*
* try to find out current spu language
*/
void xine_get_spu_lang (xine_t *self, char *str);
/**
* \fn int xine_is_stream_seekable (xine_t *self)
* \brief check if the stream is seekable (at the moment)
* \param self current xine engine configuration ( #see xine_init() )
*
* check if the stream is seekable (at the moment).
* this state may change during playback
*/
int xine_is_stream_seekable (xine_t *self);
/**
* \fn void xine_select_spu_channel (xine_t *self, int channel)
* \brief Set sub-title channel
* \param self Current xine engine configuration ( #see xine_init() )
* \return Nothing
*
* Set desired sub-title channel.
*/
void xine_select_spu_channel (xine_t *self, int channel);
/** @} end of xine_management */
/**
* \defgroup audio_group Audio.
* @{
*/
/**
*
* \defgroup audio_cap audio driver capabilities
* @{
*/
/**
* \def AO_CAP_NOCAP
* Driver has no capabilities.
* \sa xine_get_audio_capabilities()
*/
#define AO_CAP_NOCAP 0x00000000
/**
* \def AO_CAP_MODE_A52
* Driver supports A/52 output.
* \sa xine_get_audio_capabilities()
*/
#define AO_CAP_MODE_A52 0x00000001
/**
* \def AO_CAP_MODE_AC5
* Driver supports AC5 output.
* \sa xine_get_audio_capabilities()
*/
#define AO_CAP_MODE_AC5 0x00000002
/**
* \def AO_CAP_MODE_MONO
* Driver supports mono output.
* 1 sample == 2 bytes (C)
* \sa xine_get_audio_capabilities()
*/
#define AO_CAP_MODE_MONO 0x00000004
/**
* \def AO_CAP_MODE_STEREO
* Driver supports stereo output.
* 1 sample == 4 bytes (L,R)
* \sa xine_get_audio_capabilities()
*/
#define AO_CAP_MODE_STEREO 0x00000008
/**
* \def AO_CAP_MODE_4CHANNEL
* Driver supports 4 channels.
* 1 sample == 8 bytes (L,R,LR,RR)
* \sa xine_get_audio_capabilities()
*/
#define AO_CAP_MODE_4CHANNEL 0x00000010
/**
* \def AO_CAP_MODE_5CHANNEL
* Driver supports 5 channels.
* 1 sample == 10 bytes (L,R,LR,RR,C)
* \sa xine_get_audio_capabilities()
*/
#define AO_CAP_MODE_5CHANNEL 0x00000020
/**
* \def AO_CAP_MODE_5_1CHANNEL
* Driver supports 5.1 channels.
* 1 sample == 12 bytes (L,R,LR,RR,C,LFE)
* \sa xine_get_audio_capabilities()
*/
#define AO_CAP_MODE_5_1CHANNEL 0x00000040
/**
* \def AO_CAP_MIXER_VOL
* Driver supports mixer control.
* \sa xine_get_audio_capabilities()
*/
#define AO_CAP_MIXER_VOL 0x00000080
/**
* \def AO_CAP_PCM_VOL
* Driver supports pcm control.
* \sa xine_get_audio_capabilities()
*/
#define AO_CAP_PCM_VOL 0x00000100
/**
* \def AO_CAP_MUTE_VOL
* Driver can mute volume.
* \sa xine_get_audio_capabilities()
*/
#define AO_CAP_MUTE_VOL 0x00000200
/**
* \fn int xine_get_audio_capabilities(xine_t *self)
* \brief Get audio driver capabilities.
* \param self Current xine engine configuration ( #see xine_init() )
* \return Audio capabilities.
*
* Get audio driver capabilities, returned value can be AND/ORed with AO_CAP_* constant
* to get relevant informations.
*/
int xine_get_audio_capabilities(xine_t *self);
/** @} end of audio_cap */
/**
*
* \defgroup audio_prop Constants for the get/set properties functions.
* @{
*/
/**
* \def AO_PROP_MIXER_VOL
* Mixer volume property.
* \sa xine_get_audio_property(), xine_set_audio_property()
*/
#define AO_PROP_MIXER_VOL 0
/**
* \def AO_PROP_PCM_VOL
* Pcm volume property.
* \sa xine_get_audio_property(), xine_set_audio_property()
*/
#define AO_PROP_PCM_VOL 1
/**
* \def AO_PROP_MUTE_VOL
* Pcm volume property.
* \sa xine_get_audio_property(), xine_set_audio_property()
*/
#define AO_PROP_MUTE_VOL 2
/**
* \fn int xine_get_audio_property(xine_t *self, int property)
* \brief Get audio driver property.
* \param self Current xine engine configuration ( #see xine_init() )
* \param property ( see AO_PROP_* )
* \return value of property.
*
* Get audio property ( AO_PROP_* ) value .
*/
int xine_get_audio_property(xine_t *self, int property);
/**
* \fn int xine_set_audio_property(xine_t *self, int property, int value)
* \brief Set audio driver property value.
* \param self Current xine engine configuration ( #see xine_init() )
* \param property ( see AO_PROP_* )
* \param value of property
* \return value on success, otherwise ~value.
*
* Set audio property value ( AO_PROP_* ). It will return value if
* operation is successfuly completed, and ~value on failure.
*/
int xine_set_audio_property(xine_t *self, int property, int value);
/** @} end of audio_prop */
/** @} end of audio_group */
/**
* \defgroup browse_group Browsing support
* @{
*/
/**
* \fn char **xine_get_browsable_input_plugin_ids (xine_t *self)
* \brief Request list of browsable featured plugins
* \param self Current xine engine configuration ( #see xine_init() )
* \return List of plugins
*
* Some input plugins are browseable,
* get the list of ids of these plugins.
*/
char **xine_get_browsable_input_plugin_ids (xine_t *self) ;
/**
* \defgroup mrl_types Types of available mrls
* These types are bit field, can be used ORed/ANDed.
* \sa mrl_t
* @{
*/
/**
* \def mrl_unknown
* Unknow mrl type.
* \sa mrl_t
*/
#define mrl_unknown (0 << 0)
/**
* \def mrl_dvd
* DVD mrl type.
* \sa mrl_t
*/
#define mrl_dvd (1 << 0)
/**
* \def mrl_vcd
* VCD mrl type.
* \sa mrl_t
*/
#define mrl_vcd (1 << 1)
/**
* \def mrl_net
* Network mrl type.
* \sa mrl_t
*/
#define mrl_net (1 << 2)
/**
* \def mrl_rtp
* Multicast mrl type.
* \sa mrl_t
*/
#define mrl_rtp (1 << 3)
/**
* \def mrl_stdin
* Standart input mrl type.
* \sa mrl_t
*/
#define mrl_stdin (1 << 4)
/**
* \def mrl_file
* File mrl type.
* \sa mrl_t
*/
#define mrl_file (1 << 5)
/**
* \def mrl_file_fifo
* Fifo file mrl type.
* \sa mrl_t
*/
#define mrl_file_fifo (1 << 6)
/**
* \def mrl_file_chardev
* Char device file mrl type.
* \sa mrl_t
*/
#define mrl_file_chardev (1 << 7)
/**
* \def mrl_file_directory
* Directory file mrl type.
* \sa mrl_t
*/
#define mrl_file_directory (1 << 8)
/**
* \def mrl_file_blockdev
* Block device file mrl type.
* \sa mrl_t
*/
#define mrl_file_blockdev (1 << 9)
/**
* \def mrl_file_normal
* Normal file mrl type.
* \sa mrl_t
*/
#define mrl_file_normal (1 << 10)
/**
* \def mrl_file_symlink
* Soft link file mrl type.
* \sa mrl_t
*/
#define mrl_file_symlink (1 << 11)
/**
* \def mrl_file_sock
* Socket file mrl type.
* \sa mrl_t
*/
#define mrl_file_sock (1 << 12)
/**
* \def mrl_file_exec
* Executable file mrl type.
* \sa mrl_t
*/
#define mrl_file_exec (1 << 13)
/**
* \def mrl_file_backup
* Backup file mrl type.
* \sa mrl_t
*/
#define mrl_file_backup (1 << 14)
/**
* \def mrl_file_hidden
* Hidden file mrl type.
* \sa mrl_t
*/
#define mrl_file_hidden (1 << 15)
/** @} end of mrl_types */
/**
* \def MRL_ZERO(m)
* Freeing/zeroing all of entries of given mrl.
* \sa mrl_t, xine_get_browse_mrls()
*/
#define MRL_ZERO(m) { \
if((m)) { \
if((m)->origin) \
free((m)->origin); \
if((m)->mrl) \
free((m)->mrl); \
if((m)->link) \
free((m)->link); \
(m)->origin = NULL; \
(m)->mrl = NULL; \
(m)->link = NULL; \
(m)->type = 0; \
(m)->size = (off_t) 0; \
} \
}
/**
* \def MRL_DUPLICATE(s, d)
* Duplicate two mrls entries (s = source, d = destination).
* \sa mrl_t, xine_get_browse_mrls()
*/
#define MRL_DUPLICATE(s, d) { \
assert((s) != NULL); \
assert((d) != NULL); \
\
if((s)->origin) { \
if((d)->origin) { \
(d)->origin = (char *) realloc((d)->origin, strlen((s)->origin) + 1); \
sprintf((d)->origin, "%s", (s)->origin); \
} \
else \
(d)->origin = strdup((s)->origin); \
} \
else \
(d)->origin = NULL; \
\
if((s)->mrl) { \
if((d)->mrl) { \
(d)->mrl = (char *) realloc((d)->mrl, strlen((s)->mrl) + 1); \
sprintf((d)->mrl, "%s", (s)->mrl); \
} \
else \
(d)->mrl = strdup((s)->mrl); \
} \
else \
(d)->mrl = NULL; \
\
if((s)->link) { \
if((d)->link) { \
(d)->link = (char *) realloc((d)->link, strlen((s)->link) + 1); \
sprintf((d)->link, "%s", (s)->link); \
} \
else \
(d)->link = strdup((s)->link); \
} \
else \
(d)->link = NULL; \
\
(d)->type = (s)->type; \
(d)->size = (s)->size; \
}
/**
* \def MRLS_DUPLICATE(s, d)
* Duplicate two arrays of mrls (s = source, d = destination).
* \sa mrl_t, xine_get_browse_mrls()
*/
#define MRLS_DUPLICATE(s, d) { \
int i = 0; \
\
assert((s) != NULL); \
assert((d) != NULL); \
\
while((s) != NULL) { \
d[i] = (mrl_t *) malloc(sizeof(mrl_t)); \
MRL_DUPLICATE(s[i], d[i]); \
i++; \
} \
}
/**
* \struct mrl_t
* mrl type.
* \sa xine_get_browse_mrls(), MRL_ZERO, MRL_DUPLICATE, MRLS_DUPLICATE, mrl_types
*/
typedef struct {
/** Origin of grabbed mrls (eg: path for file plugin */
char *origin;
/** <type>://<location> */
char *mrl;
/** name of link, if exist, otherwise NULL */
char *link;
/** match to mrl_type enum */
uint32_t type;
/** size of this source, may be 0 */
off_t size;
} mrl_t;
/**
* \fn mrl_t **xine_get_browse_mrls (xine_t *self, char *plugin_id, char *start_mrl, int *num_mrls)
* \brief Request available MRLs from plugins
* \param self Current xine engine configuration ( #see xine_init() )
* \param plugin_id Plugin name ( #see xine_get_browsable_input_plugin_ids() )
* \param start_mrl MRL
* \param num_mrl how many mrls was found
* \return start_mrl on success, NULL on failure.
*
* Asks input plugin named <plugin_id> to return
* a list of available MRLs in domain/directory <start_mrl>.
*
* <start_mrl> may be NULL indicating the toplevel domain/dir
* returns <start_mrl> if <start_mrl> is a valid MRL, not a directory
* returns NULL if <start_mrl> is an invalid MRL, not even a directory.
*/
mrl_t **xine_get_browse_mrls (xine_t *self, char *plugin_id, char *start_mrl, int *num_mrls);
/** @} end of browse_group */
/**
* \defgroup autoplay_group Autoplay support
* @{
*/
/**
* \fn char **xine_get_autoplay_input_plugin_ids (xine_t *self)
* \brief Request playlist from plugin
* \param self Current xine engine configuration ( #see xine_init() )
* \return Playlist.
*
* Some input plugins can generate autoplay lists
* returns a list of ids of these plugins.
*/
char **xine_get_autoplay_input_plugin_ids (xine_t *self) ;
/**
* \fn char **xine_get_autoplay_mrls (xine_t *self, char *plugin_id, int *num_mrls)
* \brief Request MRL list from plugin
* \param self Current xine engine configuration ( #see xine_init() )
* \param plugin_id Plugin name ( #see xine_get_autoplay_input_plugin_ids() )
* \param num_mrls Entries in return array.
* \return MRL list.
*
* Get autoplay MRL list for input plugin named <plugin_id>.
*/
char **xine_get_autoplay_mrls (xine_t *self, char *plugin_id, int *num_mrls);
/** @} end of autoplay_group */
/**
* \defgroup loadplugins_group Loading plugins
* output plugin load support functions
* @{
*/
/**
* \def XINE_PLUGINDIR
* Plugin files location.
* \ingroup loadplugins_group
*/
#define XINE_PLUGINDIR "@XINE_PLUGINPATH@"
/**
* \defgroup visual_types Valid visual types
* @{
*/
/**
* \def VISUAL_TYPE_X11
* X11 visual type.
* \sa xine_list_video_output_plugins, xine_load_video_output_plugin
*/
#define VISUAL_TYPE_X11 1
/**
* \def VISUAL_TYPE_AA
* Asci Art visual type.
* \sa xine_list_video_output_plugins, xine_load_video_output_plugin
*/
#define VISUAL_TYPE_AA 2
/**
* \def VISUAL_TYPE_FB
* Framebuffer visual type
* \sa xine_list_video_output_plugins, xine_load_video_output_plugin
*/
#define VISUAL_TYPE_FB 3
/**
* \def VISUAL_TYPE_GTK
* GTK visual type
* \sa xine_list_video_output_plugins, xine_load_video_output_plugin
*/
#define VISUAL_TYPE_GTK 4
/** @} end of visual_types */
/**
* \fn void xine_list_demux_plugins (config_values_t *config, char **identifiers, char **mimetypes)
* \brief list available demux plugins
* \param config current configuration ( #see config_file_init() )
* \param identifiers pointer to a (char *) that will be allocated and filled with all demux identifiers
* \param mimetypes pointer to a (char *) that will be allocated and filled with all demux mimetypes
* \return none (strings are returned on *identifiers and *mimetypes). It is up to called to free these after use.
*/
void xine_list_demux_plugins (config_values_t *config,
char **identifiers, char **mimetypes);
/**
* \fn char **xine_list_video_output_plugins (int visual_type)
* \brief list available video output plugins
* \param visual_type #see @ref visual_types
* \return a list of available video output plugins for the specified visual type - the list is sorted by plugin priority
* \sa visual_types
*/
char **xine_list_video_output_plugins (int visual_type);
/**
* \fn vo_driver_t *xine_load_video_output_plugin(config_values_t *config, char *id, int visual_type, void *visual)
* \param config current configuration ( #see config_file_init() )
* \param id driver name.
* \param visual_type #see @ref visual_types
* \param visual visual type dependant data pointer.
* \brief load a specific video output plugin
* \sa vo_driver_t, visual_types
*/
vo_driver_t *xine_load_video_output_plugin(config_values_t *config,
char *id, int visual_type, void *visual);
/**
* \fn char **xine_list_audio_output_plugins (void)
* \brief generate a list of all available audio output plugins
* \return a list of available audio output plugins the list returned is sorted by plugin priority
*/
char **xine_list_audio_output_plugins (void);
/**
* \fn ao_driver_t *xine_load_audio_output_plugin(config_values_t *config, char *id)
* \param config current configuration ( #see config_file_init() )
* \param id driver name.
* \brief load a specific audio output plugin.
* \sa ao_driver_t
*/
ao_driver_t *xine_load_audio_output_plugin(config_values_t *config, char *id);
/** @} end of loadplugins_group */
/**
* \defgroup event_group Sending events
* Event dispatcher mechanism
* @{
*/
/**
* Event listener callback.
* \sa xine_register_event_listener, xine_remove_event_listener
*/
typedef void (*event_listener_t) (void *user_data, xine_event_t *event);
/**
* \fn int xine_register_event_listener(xine_t *self, event_listener_t listener)
* \param self Current xine engine configuration ( #see xine_init() )
* \param listener callback function.
* \param user_data - will be used as first parameter to callback
* \brief registers an event listener callback.
* \return 0 if the listener was registerd, non-zero if it could not.
* \sa event_listener_t
*/
int xine_register_event_listener(xine_t *self, event_listener_t listener, void *user_data);
/**
* \fn int xine_remove_event_listener(xine_t *self, event_listener_t listener)
* \param self Current xine engine configuration ( #see xine_init() )
* \param listener callback function.
* \brief Attempts to remove a registered event listener.
* \return 0 if the listener was removes, non-zero if it wasn't (e.g. not found).
* \sa event_listener_t
*/
int xine_remove_event_listener(xine_t *self, event_listener_t listener);
/**
* \fn void xine_send_event(xine_t *self, event_t *event)
* \param self Current xine engine configuration ( #see xine_init() )
* \param event event to send
* \brief sends an event to all listeners.
* \sa event_t
*/
void xine_send_event(xine_t *self, xine_event_t *event);
/** @} end of event_group */
/**
* \fn int xine_get_current_frame (xine_t *self, int *width, int *height, int *ratio_code, int *format, uint8_t **y, uint8_t **u, uint8_t **v)
*
* \param self Current xine engine configuration ( #see xine_init() )
* \param width Width of image (be aware that u,v may be subsampled)
* \param height Height of image (be aware that u,v may be subsampled)
* \param ratio_code Aspect ratio of the frame
* \param format Subsampling format YUV 4:2:0 or 4:2:2
* \param y Lumiance information
* \param u Subsample color information
* \param v Subsample color information
* \brief Snapshot function.
* \return 1 on success, 0 failure.
*
*
*/
int xine_get_current_frame (xine_t *self, int *width, int *height,
int *ratio_code, int *format,
uint8_t **y, uint8_t **u,
uint8_t **v);
/**
* \def XINE_IMGFMT_YV12
* image format.
* \sa xine_get_current_frame
*/
#define XINE_IMGFMT_YV12 0x32315659
/**
* \def XINE_IMGFMT_YUY2
* image format.
* \sa xine_get_current_frame
*/
#define XINE_IMGFMT_YUY2 (('2'<<24)|('Y'<<16)|('U'<<8)|'Y')
/**
* \def XINE_ASPECT_RATIO_SQUARE
* aspect ratio.
* \sa xine_get_current_frame
*/
#define XINE_ASPECT_RATIO_SQUARE 1
/**
* \def XINE_ASPECT_RATIO_4_3
* aspect ratio.
* \sa xine_get_current_frame
*/
#define XINE_ASPECT_RATIO_4_3 2
/**
* \def XINE_ASPECT_RATIO_ANAMORPHIC
* aspect ratio.
* \sa xine_get_current_frame
*/
#define XINE_ASPECT_RATIO_ANAMORPHIC 3
/**
* \def XINE_ASPECT_RATIO_211_1
* aspect ratio.
* \sa xine_get_current_frame
*/
#define XINE_ASPECT_RATIO_211_1 4
/**
* \def XINE_ASPECT_RATIO_DONT_TOUCH
* aspect ratio.
* \sa xine_get_current_frame
*/
#define XINE_ASPECT_RATIO_DONT_TOUCH 42
/** @} end of xine_api */
#ifdef __cplusplus
}
#endif
#endif
|