00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef BLURAY_H_
00023 #define BLURAY_H_
00024
00025 #ifdef __cplusplus
00026 extern "C" {
00027 #endif
00028
00034 #include <stdint.h>
00035
00036 #define TITLES_ALL 0
00037 #define TITLES_FILTER_DUP_TITLE 0x01
00038 #define TITLES_FILTER_DUP_CLIP 0x02
00040 #define TITLES_RELEVANT \
00041 (TITLES_FILTER_DUP_TITLE | TITLES_FILTER_DUP_CLIP)
00044 typedef struct bluray BLURAY;
00045
00046 typedef enum {
00047 BLURAY_STREAM_TYPE_VIDEO_MPEG1 = 0x01,
00048 BLURAY_STREAM_TYPE_VIDEO_MPEG2 = 0x02,
00049 BLURAY_STREAM_TYPE_AUDIO_MPEG1 = 0x03,
00050 BLURAY_STREAM_TYPE_AUDIO_MPEG2 = 0x04,
00051 BLURAY_STREAM_TYPE_AUDIO_LPCM = 0x80,
00052 BLURAY_STREAM_TYPE_AUDIO_AC3 = 0x81,
00053 BLURAY_STREAM_TYPE_AUDIO_DTS = 0x82,
00054 BLURAY_STREAM_TYPE_AUDIO_TRUHD = 0x83,
00055 BLURAY_STREAM_TYPE_AUDIO_AC3PLUS = 0x84,
00056 BLURAY_STREAM_TYPE_AUDIO_DTSHD = 0x85,
00057 BLURAY_STREAM_TYPE_AUDIO_DTSHD_MASTER = 0x86,
00058 BLURAY_STREAM_TYPE_VIDEO_VC1 = 0xea,
00059 BLURAY_STREAM_TYPE_VIDEO_H264 = 0x1b,
00060 BLURAY_STREAM_TYPE_SUB_PG = 0x90,
00061 BLURAY_STREAM_TYPE_SUB_IG = 0x91,
00062 BLURAY_STREAM_TYPE_SUB_TEXT = 0x92,
00063 BLURAY_STREAM_TYPE_AUDIO_AC3PLUS_SECONDARY = 0xa1,
00064 BLURAY_STREAM_TYPE_AUDIO_DTSHD_SECONDARY = 0xa2
00065 } bd_stream_type_e;
00066
00067 typedef enum {
00068 BLURAY_VIDEO_FORMAT_480I = 1,
00069 BLURAY_VIDEO_FORMAT_576I = 2,
00070 BLURAY_VIDEO_FORMAT_480P = 3,
00071 BLURAY_VIDEO_FORMAT_1080I = 4,
00072 BLURAY_VIDEO_FORMAT_720P = 5,
00073 BLURAY_VIDEO_FORMAT_1080P = 6,
00074 BLURAY_VIDEO_FORMAT_576P = 7
00075 } bd_video_format_e;
00076
00077 typedef enum {
00078 BLURAY_VIDEO_RATE_24000_1001 = 1,
00079 BLURAY_VIDEO_RATE_24 = 2,
00080 BLURAY_VIDEO_RATE_25 = 3,
00081 BLURAY_VIDEO_RATE_30000_1001 = 4,
00082 BLURAY_VIDEO_RATE_50 = 6,
00083 BLURAY_VIDEO_RATE_60000_1001 = 7
00084 } bd_video_rate_e;
00085
00086 typedef enum {
00087 BLURAY_ASPECT_RATIO_4_3 = 2,
00088 BLURAY_ASPECT_RATIO_16_9 = 3
00089 } bd_video_aspect_e;
00090
00091 typedef enum {
00092 BLURAY_AUDIO_FORMAT_MONO = 1,
00093 BLURAY_AUDIO_FORMAT_STEREO = 3,
00094 BLURAY_AUDIO_FORMAT_MULTI_CHAN = 6,
00095 BLURAY_AUDIO_FORMAT_COMBO = 12
00096 } bd_audio_format_e;
00097
00098
00099 typedef enum {
00100 BLURAY_AUDIO_RATE_48 = 1,
00101 BLURAY_AUDIO_RATE_96 = 4,
00102 BLURAY_AUDIO_RATE_192 = 5,
00103 BLURAY_AUDIO_RATE_192_COMBO = 12,
00104
00105 BLURAY_AUDIO_RATE_96_COMBO = 14
00106
00107 } bd_audio_rate_e;
00108
00109 typedef enum {
00110 BLURAY_TEXT_CHAR_CODE_UTF8 = 0x01,
00111 BLURAY_TEXT_CHAR_CODE_UTF16BE = 0x02,
00112 BLURAY_TEXT_CHAR_CODE_SHIFT_JIS = 0x03,
00113 BLURAY_TEXT_CHAR_CODE_EUC_KR = 0x04,
00114 BLURAY_TEXT_CHAR_CODE_GB18030_20001 = 0x05,
00115 BLURAY_TEXT_CHAR_CODE_CN_GB = 0x06,
00116 BLURAY_TEXT_CHAR_CODE_BIG5 = 0x07
00117 } bd_char_code_e;
00118
00119 typedef enum {
00120 BLURAY_STILL_NONE = 0x00,
00121 BLURAY_STILL_TIME = 0x01,
00122 BLURAY_STILL_INFINITE = 0x02,
00123 } bd_still_mode_e;
00124
00125 typedef struct bd_stream_info {
00126 uint8_t coding_type;
00127 uint8_t format;
00128 uint8_t rate;
00129 uint8_t char_code;
00130 uint8_t lang[4];
00131 uint16_t pid;
00132 uint8_t aspect;
00133 } BLURAY_STREAM_INFO;
00134
00135 typedef struct bd_clip {
00136 uint32_t pkt_count;
00137 uint8_t still_mode;
00138 uint16_t still_time;
00139 uint8_t video_stream_count;
00140 uint8_t audio_stream_count;
00141 uint8_t pg_stream_count;
00142 uint8_t ig_stream_count;
00143 uint8_t sec_audio_stream_count;
00144 uint8_t sec_video_stream_count;
00145 BLURAY_STREAM_INFO *video_streams;
00146 BLURAY_STREAM_INFO *audio_streams;
00147 BLURAY_STREAM_INFO *pg_streams;
00148 BLURAY_STREAM_INFO *ig_streams;
00149 BLURAY_STREAM_INFO *sec_audio_streams;
00150 BLURAY_STREAM_INFO *sec_video_streams;
00151 } BLURAY_CLIP_INFO;
00152
00153 typedef struct bd_chapter {
00154 uint32_t idx;
00155 uint64_t start;
00156 uint64_t duration;
00157 uint64_t offset;
00158 } BLURAY_TITLE_CHAPTER;
00159
00160 typedef struct bd_title_info {
00161 uint32_t idx;
00162 uint32_t playlist;
00163 uint64_t duration;
00164 uint32_t clip_count;
00165 uint8_t angle_count;
00166 uint32_t chapter_count;
00167 BLURAY_CLIP_INFO *clips;
00168 BLURAY_TITLE_CHAPTER *chapters;
00169 } BLURAY_TITLE_INFO;
00170
00182 uint32_t bd_get_titles(BLURAY *bd, uint8_t flags, uint32_t min_title_length);
00183
00193 BLURAY_TITLE_INFO* bd_get_title_info(BLURAY *bd, uint32_t title_idx, unsigned angle);
00194
00204 BLURAY_TITLE_INFO* bd_get_playlist_info(BLURAY *bd, uint32_t playlist, unsigned angle);
00205
00212 void bd_free_title_info(BLURAY_TITLE_INFO *title_info);
00213
00221 BLURAY *bd_open(const char* device_path, const char* keyfile_path);
00222
00228 void bd_close(BLURAY *bd);
00229
00237 int64_t bd_seek(BLURAY *bd, uint64_t pos);
00238
00247 int64_t bd_seek_time(BLURAY *bd, uint64_t tick);
00248
00258 int bd_read(BLURAY *bd, unsigned char *buf, int len);
00259
00267 int bd_read_skip_still(BLURAY *bd);
00268
00277 int64_t bd_seek_chapter(BLURAY *bd, unsigned chapter);
00278
00287 int64_t bd_chapter_pos(BLURAY *bd, unsigned chapter);
00288
00296 uint32_t bd_get_current_chapter(BLURAY *bd);
00297
00306 int64_t bd_seek_mark(BLURAY *bd, unsigned mark);
00307
00316 int bd_select_playlist(BLURAY *bd, uint32_t playlist);
00317
00326 int bd_select_title(BLURAY *bd, uint32_t title);
00327
00336 int bd_select_angle(BLURAY *bd, unsigned angle);
00337
00345 void bd_seamless_angle_change(BLURAY *bd, unsigned angle);
00346
00356 uint64_t bd_get_title_size(BLURAY *bd);
00357
00365 uint32_t bd_get_current_title(BLURAY *bd);
00366
00374 unsigned bd_get_current_angle(BLURAY *bd);
00375
00383 uint64_t bd_tell(BLURAY *bd);
00384
00392 uint64_t bd_tell_time(BLURAY *bd);
00393
00394
00395
00396
00397
00398 typedef struct {
00399 uint8_t bluray_detected;
00400
00401 uint8_t first_play_supported;
00402 uint8_t top_menu_supported;
00403
00404 uint32_t num_hdmv_titles;
00405 uint32_t num_bdj_titles;
00406 uint32_t num_unsupported_titles;
00407
00408 uint8_t aacs_detected;
00409 uint8_t libaacs_detected;
00410 uint8_t aacs_handled;
00411
00412 uint8_t bdplus_detected;
00413 uint8_t libbdplus_detected;
00414 uint8_t bdplus_handled;
00415
00416 } BLURAY_DISC_INFO;
00417
00425 const BLURAY_DISC_INFO *bd_get_disc_info(BLURAY*);
00426
00427
00428
00429
00430
00431 typedef enum {
00432 BLURAY_PLAYER_SETTING_PARENTAL = 13,
00433 BLURAY_PLAYER_SETTING_AUDIO_CAP = 15,
00434 BLURAY_PLAYER_SETTING_AUDIO_LANG = 16,
00435 BLURAY_PLAYER_SETTING_PG_LANG = 17,
00436 BLURAY_PLAYER_SETTING_MENU_LANG = 18,
00437 BLURAY_PLAYER_SETTING_COUNTRY_CODE = 19,
00438 BLURAY_PLAYER_SETTING_REGION_CODE = 20,
00439 BLURAY_PLAYER_SETTING_VIDEO_CAP = 29,
00440 BLURAY_PLAYER_SETTING_TEXT_CAP = 30,
00441 BLURAY_PLAYER_SETTING_PLAYER_PROFILE = 31,
00442 } bd_player_setting;
00443
00454 int bd_set_player_setting(BLURAY *bd, uint32_t idx, uint32_t value);
00455 int bd_set_player_setting_str(BLURAY *bd, uint32_t idx, const char *s);
00456
00457
00458
00459
00460 int bd_start_bdj(BLURAY *bd, const char* start_object);
00461 void bd_stop_bdj(BLURAY *bd);
00462
00463
00464
00465
00466
00467 typedef enum {
00468 BD_EVENT_NONE = 0,
00469 BD_EVENT_ERROR,
00470 BD_EVENT_ENCRYPTED,
00471
00472
00473 BD_EVENT_ANGLE,
00474 BD_EVENT_TITLE,
00475 BD_EVENT_PLAYLIST,
00476 BD_EVENT_PLAYITEM,
00477 BD_EVENT_CHAPTER,
00478 BD_EVENT_END_OF_TITLE,
00479
00480
00481 BD_EVENT_AUDIO_STREAM,
00482 BD_EVENT_IG_STREAM,
00483 BD_EVENT_PG_TEXTST_STREAM,
00484 BD_EVENT_PIP_PG_TEXTST_STREAM,
00485 BD_EVENT_SECONDARY_AUDIO_STREAM,
00486 BD_EVENT_SECONDARY_VIDEO_STREAM,
00487
00488 BD_EVENT_PG_TEXTST,
00489 BD_EVENT_PIP_PG_TEXTST,
00490 BD_EVENT_SECONDARY_AUDIO,
00491 BD_EVENT_SECONDARY_VIDEO,
00492 BD_EVENT_SECONDARY_VIDEO_SIZE,
00493
00494
00495 BD_EVENT_SEEK,
00496
00497
00498 BD_EVENT_STILL,
00499
00500
00501 BD_EVENT_STILL_TIME,
00502
00503 } bd_event_e;
00504
00505 typedef struct {
00506 uint32_t event;
00507 uint32_t param;
00508 } BD_EVENT;
00509
00510 #define BLURAY_TITLE_FIRST_PLAY 0xffff
00511 #define BLURAY_TITLE_TOP_MENU 0
00512
00520 int bd_get_event(BLURAY *bd, BD_EVENT *event);
00521
00522
00523
00524
00525
00535 int bd_play(BLURAY *bd);
00536
00549 int bd_read_ext(BLURAY *bd, unsigned char *buf, int len, BD_EVENT *event);
00550
00563 int bd_play_title(BLURAY *bd, unsigned title);
00564
00575 int bd_menu_call(BLURAY *bd, int64_t pts);
00576
00577
00578
00579
00580
00581 struct bd_overlay_s;
00582 typedef void (*bd_overlay_proc_f)(void *, const struct bd_overlay_s * const);
00583
00593 void bd_register_overlay_proc(BLURAY *bd, void *handle, bd_overlay_proc_f func);
00594
00606 int bd_user_input(BLURAY *bd, int64_t pts, uint32_t key);
00607
00618 int bd_mouse_select(BLURAY *bd, int64_t pts, uint16_t x, uint16_t y);
00619
00620
00621
00622
00623
00624 struct meta_dl;
00632 struct meta_dl *bd_get_meta(BLURAY *bd);
00633
00634
00635 struct clpi_cl;
00644 struct clpi_cl *bd_get_clpi(BLURAY *bd, unsigned clip_ref);
00645
00652 void bd_free_clpi(struct clpi_cl *cl);
00653
00654 #ifdef __cplusplus
00655 };
00656 #endif
00657
00658 #endif