亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ifo.h

?? VLC媒體播放程序
?? H
?? 第 1 頁 / 共 2 頁
字號:
/***************************************************************************** * dvd_ifo.h: Structures for ifo parsing ***************************************************************************** * Copyright (C) 1999-2001 VideoLAN * $Id: ifo.h,v 1.4 2003/10/25 00:49:13 sam Exp $ * * Author: St閜hane Borel <stef@via.ecp.fr> * * based on: *  - libifo by Thomas Mirlacher <dent@cosy.sbg.ac.at> *  - IFO structure documentation by Thomas Mirlacher, Bj鰎n Englund, *  H錵an Hjort * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA. *****************************************************************************//***************************************************************************** * Common structures for Video Management and Video Title sets *****************************************************************************//* * Program Chain structures */typedef struct ifo_video_s{    uint8_t i_compression         ;/* 2; */    uint8_t i_system              ;/* 2; */    uint8_t i_ratio               ;/* 2; */    uint8_t i_perm_displ          ;/* 2; */    uint8_t i_line21_1            ;/* 1; */    uint8_t i_line21_2            ;/* 1; */    uint8_t i_source_res          ;/* 2; */    uint8_t i_letterboxed         ;/* 1; */    uint8_t i_mode                ;/* 1; */} ifo_video_t;/* Audio type information */typedef struct ifo_audio_s{    uint8_t i_coding_mode         ;/* 3; */    uint8_t i_multichannel_extension  ;/* 1; */    uint8_t i_type                ;/* 2; */    uint8_t i_appl_mode           ;/* 2; */    uint8_t i_quantization        ;/* 2; */    uint8_t i_sample_freq         ;/* 2; */    uint8_t i_test                ;/* 1; */    uint8_t i_num_channels        ;/* 3; */    uint16_t i_lang_code          ;/* 16;   // <char> description */    uint8_t i_foo                 ;/* 8;    // 0x00000000 ? */    uint8_t i_caption             ;/* 8; */    uint8_t i_bar                 ;/* 8;    // 0x00000000 ? */} ifo_audio_t;/* Audio Status */typedef struct audio_status_s{    uint8_t i_available;        /* 1 */    uint8_t i_position;         /* 7 */    uint8_t i_foo;              /* 8 */} audio_status_t;typedef struct ifo_spu_t{    uint16_t i_prefix             ;/* 16;   // 0x0100 ? */    uint16_t i_lang_code          ;/* 16;   // <char> description */    uint8_t i_foo                 ;/* 8;    // dont know */    uint8_t i_caption             ;/* 8;    // 0x00 ? */} ifo_spu_t;/* Subpicture status */typedef struct spu_status_s{    uint8_t i_available;        /*1*/    uint8_t i_position_43;      /*7*/    uint8_t i_position_wide;    /*8*/    uint8_t i_position_letter;  /*8*/    uint8_t i_position_pan;     /*8*/} spu_status_t;/* Ifo vitual machine Commands */typedef struct command_desc_s{    unsigned int    i_type      :3;    unsigned int    i_direct    :1;    unsigned int    i_cmd       :4;    unsigned int    i_dir_cmp   :1;    unsigned int    i_cmp       :3;    unsigned int    i_sub_cmd   :4;    union    {        uint8_t     pi_8[6];        uint16_t    pi_16[3];    } data;} command_desc_t;/* Program Chain Command Table  - start at i_pgc_com_tab_sbyte */typedef struct command_s{    uint16_t        i_pre_command_nb;               /* 2 bytes */    uint16_t        i_post_command_nb;              /* 2 bytes */    uint16_t        i_cell_command_nb;              /* 2 bytes *//*    char[2]         ??? */    uint64_t * p_pre_command;                       /* i_pre_com_nb * 8 bytes */    uint64_t * p_post_command;                      /* i_post_com_nb * 8 bytes */    uint64_t * p_cell_command;                      /* i_pre_com_nb * 8 bytes *//*    command_desc_t* p_cell_command;                 // i_cell_com_nb * 8 bytes *//*    command_desc_t* p_post_command;                 // i_post_com_nb * 8 bytes *//*    command_desc_t* p_cell_command;                 // i_cell_com_nb * 8 bytes */} command_t;/* Program Chain Map Table * - start at "i_pgc_prg_map_sbyte" */typedef struct chapter_map_s{    uint8_t *       pi_start_cell;              /* i_prg_nb * 1 byte  */} chapter_map_t;/* Cell Playback Information Table * we have a pointer to such a structure for each cell * - first start at "i_cell_play_inf_sbyte" */typedef struct cell_play_s{    /* This information concerns the currently selected cell */    uint16_t        i_category;                 /* 2 bytes */    uint8_t         i_still_time;               /* 1 byte; in seconds; ff=inf */    uint8_t         i_command_nb;               /* 1 byte; 0 = no com */    uint32_t        i_play_time;                /* 4 bytes */    uint32_t        i_first_sector;             /* 4 bytes */    uint32_t        i_first_ilvu_vobu_esector;  /* 4 bytes; ??? */    uint32_t        i_last_vobu_start_sector;   /* 4 bytes */    uint32_t        i_last_sector;              /* 4 bytes */} cell_play_t;/* Cell Position Information Table * we have a pointer to such a structure for each cell * - first start at "i_cell_pos_inf_sbyte" */typedef struct cell_pos_s{    /* This information concerns the currently selected cell */    uint16_t        i_vob_id;                   /* 2 bytes *//*    char            ??? */    uint8_t         i_cell_id;                  /* 1 byte */} cell_pos_t;/* Main structure for Program Chain * - start at i_fp_pgc_sbyte * - or at i_vmgm_pgci_sbyte in vmgm_pgci_srp_t */typedef struct title_s{    /* Global features of program chain *//*    char[2]         ??? */    uint8_t         i_chapter_nb;                   /* 1 byte */    uint8_t         i_cell_nb;                  /* 1 byte */    uint32_t        i_play_time;                /* 4 bytes */    uint32_t        i_prohibited_user_op;       /* 4 bytes */    audio_status_t  pi_audio_status[8];         /* 8*2 bytes */    spu_status_t    pi_spu_status[32];       /* 32*4 bytes */    uint16_t        i_next_title_num;              /* 2 bytes */    uint16_t        i_prev_title_num;              /* 2 bytes */    uint16_t        i_go_up_title_num;              /* 2 bytes */    uint8_t         i_still_time;               /* 1 byte ; in seconds */    uint8_t         i_play_mode;                /* 1 byte */    /* In video_ts.ifo, the 3 significant bytes of each color are     * preceded by 1 unsignificant byte */    uint32_t        pi_yuv_color[16];           /* 16*3 bytes */    /* Here come the start bytes of the following structures */    uint16_t        i_command_start_byte;            /* 2 bytes */    uint16_t        i_chapter_map_start_byte;            /* 2 bytes */    uint16_t        i_cell_play_start_byte;      /* 2 bytes */    uint16_t        i_cell_pos_start_byte;       /* 2 bytes */    /* Predefined structures */    command_t       command;    chapter_map_t   chapter_map;    cell_play_t*    p_cell_play;           /* i_cell_nb * 24 bytes */    cell_pos_t*     p_cell_pos;             /* i_cell_nb * 4 bytes */} title_t;/* * Menu PGCI Unit Table *//* Menu PGCI Language unit Descriptor */typedef struct unit_s{    uint16_t        i_lang_code;            /* 2 bytes (ISO-xx) *//*    char            ??? */    uint8_t         i_existence_mask;           /* 1 byte */    uint32_t        i_unit_inf_start_byte;                 /* 4 bytes */} unit_t;typedef struct unit_title_s{    uint8_t         i_category_mask;             /* 1 byte */    uint8_t         i_category;                  /* 1 byte */    uint16_t        i_parental_mask;                 /* 2 bytes */    uint32_t        i_title_start_byte;               /* 4 bytes */    title_t         title;} unit_title_t;/* Menu PGCI Language Unit Table * - start at i_lu_sbyte */typedef struct unit_inf_s{    uint16_t        i_title_nb;                   /* 2 bytes *//*    char[2]         ??? */    uint32_t        i_last_byte;                /* 4 bytes */    unit_title_t *  p_title;                      /* i_srp_nb * 8 bytes */} unit_inf_t;/* Main Struct for Menu PGCI * - start at i_*_pgci_ut_ssector */typedef struct title_unit_s{    uint16_t        i_unit_nb;                    /* 2 bytes; ??? *//*    char[2]         ??? */    uint32_t        i_last_byte;                   /* 4 bytes */    unit_t*         p_unit;                       /* i_lu_nb * 8 bytes */    unit_inf_t*     p_unit_inf;                 /* i_lu_nb * 8 bytes */} title_unit_t;/* * Cell Adress Table Information */typedef struct cell_map_s{    uint16_t        i_vob_id;                   /* 2 bytes */    uint8_t         i_cell_id;                  /* 1 byte *//*    char            ??? */    uint32_t        i_first_sector;             /* 4 bytes */    uint32_t        i_last_sector;              /* 4 bytes */} cell_map_t;typedef struct cell_inf_s{    uint16_t        i_vob_nb;                   /* 2 bytes *//*    char[2]         ??? */    uint32_t        i_last_byte;                /* 4 bytes */    uint16_t        i_cell_nb;                  /* not in ifo; computed */                                                /* with e_byte */    cell_map_t*     p_cell_map;} cell_inf_t;/* * VOBU Adress Map Table */typedef struct vobu_map_s{    uint32_t        i_last_byte;                   /* 4 bytes */    uint32_t *      pi_vobu_start_sector;            /* (nb of vobu) * 4 bytes */} vobu_map_t;/***************************************************************************** * Structures for Video Management (cf video_ts.ifo) *****************************************************************************//* * Video Manager Information Management Table */typedef struct manager_inf_s{    byte_t          psz_id[13];                 /* 12 bytes (DVDVIDEO-VMG) */    uint32_t        i_vmg_end_sector;                  /* 4 bytes *//*    char[12]        ??? */    uint32_t        i_vmg_inf_end_sector;                /* 4 bytes */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品一区二区三区免费毛片爱| 欧美精品日韩一本| 亚洲另类中文字| 欧美日韩一二三区| 麻豆成人综合网| 综合久久给合久久狠狠狠97色 | 99精品在线免费| 日韩av中文字幕一区二区三区 | 久久免费的精品国产v∧| 成人av网址在线观看| 亚洲国产裸拍裸体视频在线观看乱了| 日韩视频一区二区三区| 成人av电影在线网| 免费在线观看不卡| 一区二区三区四区高清精品免费观看| 日韩欧美你懂的| 99精品1区2区| 日韩av在线免费观看不卡| 伊人一区二区三区| 国产欧美一区二区三区在线看蜜臀 | 91香蕉视频在线| 精品亚洲porn| 亚洲成人手机在线| 国产精品三级久久久久三级| 制服.丝袜.亚洲.另类.中文| eeuss鲁片一区二区三区在线看| 三级欧美韩日大片在线看| 国产精品久久毛片| 精品女同一区二区| 欧美日韩一区精品| 成人激情免费网站| 日韩电影一区二区三区四区| 亚洲激情校园春色| 中文幕一区二区三区久久蜜桃| 欧美精品高清视频| 在线免费不卡视频| 成人综合在线观看| 国产一区三区三区| 图片区小说区国产精品视频| 亚洲精品一二三四区| 国产亚洲欧美日韩俺去了| 日韩一区二区不卡| 51精品视频一区二区三区| 色综合久久中文字幕综合网| 不卡欧美aaaaa| 国产精品亚洲一区二区三区妖精| 午夜精品久久久久久久久| 亚洲综合免费观看高清完整版| 国产欧美一区二区精品性| 日韩欧美久久久| 丝袜美腿亚洲综合| 国产欧美日韩在线| 欧美这里有精品| 日韩电影免费一区| 亚洲不卡一区二区三区| 免费在线成人网| 日本午夜精品一区二区三区电影| 亚洲欧洲日本在线| 国产精品不卡在线| 国产精品久久久久一区| 国产区在线观看成人精品 | 亚洲电影欧美电影有声小说| 一区二区三区在线免费视频| 亚洲色图欧美在线| 亚洲激情五月婷婷| 亚洲欧美日韩小说| 亚洲欧美电影一区二区| 亚洲欧美日韩中文字幕一区二区三区 | 国产精品福利影院| 中文字幕欧美日韩一区| 久久日韩精品一区二区五区| 精品国产自在久精品国产| 精品免费视频.| 国产性色一区二区| 国产精品毛片久久久久久| 国产精品丝袜91| 综合精品久久久| 亚洲福利一区二区三区| 全部av―极品视觉盛宴亚洲| 精品一区二区三区在线视频| 热久久免费视频| 国产在线日韩欧美| 国产一区亚洲一区| 99久久伊人网影院| 欧美丝袜丝nylons| 精品久久久久久久人人人人传媒| 在线综合+亚洲+欧美中文字幕| 精品女同一区二区| 亚洲美女屁股眼交3| 亚洲精品成人悠悠色影视| 亚洲成人tv网| 国产精品亚洲一区二区三区妖精| 91毛片在线观看| 国产亚洲婷婷免费| 夜夜亚洲天天久久| 久久成人久久爱| 99国内精品久久| 91精品国产综合久久久久久漫画| 久久久久久免费网| 中文子幕无线码一区tr| 亚洲人成伊人成综合网小说| 天堂成人国产精品一区| 国产制服丝袜一区| 欧美亚洲禁片免费| 久久精品一区二区三区av| 一区二区日韩av| 免费成人你懂的| 成人av网站在线观看| 欧美日韩在线综合| 亚洲国产精品黑人久久久| 亚洲成a人片在线观看中文| 国产成人免费视频网站高清观看视频| 91久久国产最好的精华液| 亚洲精品在线三区| 亚洲激情图片一区| 国产激情视频一区二区在线观看| 欧美日韩国产天堂| ...av二区三区久久精品| 久久精品国产一区二区| 99精品国产99久久久久久白柏| 欧美美女网站色| 国产色综合久久| 日韩—二三区免费观看av| 色偷偷成人一区二区三区91| 久久久久久97三级| 全国精品久久少妇| 欧美日韩五月天| 日韩美女精品在线| 国产一区欧美一区| 日韩视频不卡中文| 午夜精品影院在线观看| 不卡一区二区在线| 国产欧美一二三区| 狠狠色狠狠色综合系列| 欧美色成人综合| 亚洲精品国久久99热| 成人免费视频app| 日韩一区二区三区四区五区六区| 亚洲最快最全在线视频| 国产精品88av| 欧美精品一区二| 国产成人精品免费视频网站| 欧美人体做爰大胆视频| 国产精品色在线| 国内精品国产成人| 欧美一区永久视频免费观看| 亚洲一区欧美一区| www.亚洲色图| 国产欧美一区二区精品性| 国产成人鲁色资源国产91色综 | 国产精品污网站| 国产成a人亚洲精品| 久久久精品综合| 国产成人亚洲综合a∨婷婷| 久久色视频免费观看| 激情五月激情综合网| 欧美精品视频www在线观看| 亚洲欧美色综合| 色久优优欧美色久优优| 一区二区三区四区在线播放| 在线亚洲免费视频| 亚洲一区免费视频| 7777精品伊人久久久大香线蕉的 | 蜜臀av国产精品久久久久| 91精品国模一区二区三区| 视频一区欧美日韩| 欧美精品tushy高清| 一区二区三区在线观看视频| www.成人在线| 亚洲色图一区二区| 国产成人精品三级| 亚洲人xxxx| 欧美一级片在线观看| 国产黄色精品视频| 一区二区理论电影在线观看| 欧美一区二区精品| 国产999精品久久久久久绿帽| 亚洲精品少妇30p| 久久综合色鬼综合色| 91婷婷韩国欧美一区二区| 日韩国产精品久久| 国产精品传媒在线| 日韩欧美你懂的| 色天天综合色天天久久| 久久99热99| 亚洲国产aⅴ天堂久久| 久久精品无码一区二区三区| 欧美日韩亚洲综合一区二区三区| 91看片淫黄大片一级在线观看| 美女视频网站久久| 亚洲精品美腿丝袜| 久久精品一区二区三区不卡牛牛 | www..com久久爱| 欧美韩国日本综合| 国产一区二区三区在线观看免费视频 | 国产精品久久久久久久久动漫| 欧美色老头old∨ideo| 国产成人免费视频| 日韩高清不卡在线| 亚洲精品国久久99热|