亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
精品视频999| 国产在线一区二区综合免费视频| 亚洲黄色小说网站| 亚洲高清视频的网址| 日韩不卡一二三区| 激情综合色播激情啊| 国产精品自拍一区| 99国产精品国产精品毛片| 91啪亚洲精品| 制服丝袜亚洲色图| 国产日韩v精品一区二区| 18涩涩午夜精品.www| 亚洲va在线va天堂| 精品一区二区三区久久| 国产精品一区二区黑丝 | 国产精品亲子伦对白| 一区二区三区在线观看欧美 | 精品成人一区二区| 国产精品美女久久久久久| 亚洲一二三区不卡| 国产主播一区二区| 色女孩综合影院| 日韩欧美综合在线| 国产精品成人免费精品自在线观看| 亚洲精品成人精品456| 九九九精品视频| 一本久道中文字幕精品亚洲嫩| 91麻豆精品国产91久久久久久| 国产视频一区二区在线| 亚洲第一av色| 国产成人高清视频| 欧美日韩一区在线| 国产女同性恋一区二区| 午夜久久久久久久久| 国产福利精品导航| 欧美日韩国产一二三| 久久久精品蜜桃| 亚洲午夜久久久久中文字幕久| 精品制服美女丁香| 在线日韩国产精品| 国产欧美日韩麻豆91| 日韩综合一区二区| av激情综合网| 亚洲精品在线免费播放| 亚洲国产精品尤物yw在线观看| 国产酒店精品激情| 91精品国产免费久久综合| 日韩伦理免费电影| 极品美女销魂一区二区三区免费 | 全部av―极品视觉盛宴亚洲| 99久久国产综合精品色伊| 精品国产一二三| 亚洲国产视频在线| proumb性欧美在线观看| 精品成人a区在线观看| 午夜精品aaa| 色综合久久久久久久久久久| 欧美精品一区二区在线播放| 天天综合日日夜夜精品| 色噜噜夜夜夜综合网| 日本一区二区视频在线观看| 久久精品国产久精国产| 欧美色爱综合网| 亚洲色图丝袜美腿| 韩国v欧美v日本v亚洲v| 91精品婷婷国产综合久久 | 91精品久久久久久久91蜜桃| 亚洲欧美日韩电影| 成人av网站在线| 久久综合资源网| 免费美女久久99| 欧美精品在线一区二区| 亚洲女性喷水在线观看一区| 大白屁股一区二区视频| 国产亚洲欧美日韩在线一区| 美国十次了思思久久精品导航| 日本精品裸体写真集在线观看| 中文字幕成人在线观看| 国产91在线|亚洲| 精品久久久久久综合日本欧美| 日本怡春院一区二区| 777午夜精品免费视频| 一区二区三区不卡视频在线观看| 91尤物视频在线观看| 国产欧美一区二区精品性色超碰 | 中文字幕在线不卡一区二区三区| 国产成人亚洲综合a∨猫咪| 亚洲精品一区二区三区在线观看| 麻豆精品国产91久久久久久| 欧美一级淫片007| 麻豆精品在线观看| 91精品国产麻豆| 麻豆91在线观看| 91精品国产综合久久福利软件| 亚洲成av人综合在线观看| 在线视频一区二区三区| 亚洲国产婷婷综合在线精品| 欧美午夜一区二区三区免费大片| 亚洲一区二区在线视频| 欧美日韩日日摸| 午夜精品福利视频网站| 7777精品伊人久久久大香线蕉超级流畅| 亚洲不卡av一区二区三区| 欧美肥妇bbw| 青青国产91久久久久久| 亚洲精品一区在线观看| 国产成人久久精品77777最新版本| 国产丝袜美腿一区二区三区| 成人97人人超碰人人99| 亚洲视频资源在线| 欧美视频一区二区三区在线观看| 午夜精品福利一区二区蜜股av | 91蜜桃婷婷狠狠久久综合9色| 亚洲欧美国产77777| 欧美日韩一区中文字幕| 麻豆精品精品国产自在97香蕉| 精品国产髙清在线看国产毛片| 国产精品伊人色| 国产精品高潮久久久久无| 91极品视觉盛宴| 日韩精品久久久久久| 欧美r级电影在线观看| 懂色av噜噜一区二区三区av| 亚洲精品免费看| 日韩精品中文字幕一区二区三区 | 99久久99久久精品免费看蜜桃| 夜夜亚洲天天久久| 欧美成人精品福利| 成人网在线播放| 亚洲电影你懂得| 欧美精品一区二区三区四区| 成人深夜在线观看| 亚洲国产日韩精品| 欧美精品一区二区久久婷婷| 成人黄动漫网站免费app| 亚洲福利电影网| 久久人人超碰精品| 欧美亚州韩日在线看免费版国语版 | 色偷偷久久一区二区三区| 五月婷婷综合网| 欧美激情综合在线| 欧美唯美清纯偷拍| 国产精品亚洲人在线观看| 一区2区3区在线看| 欧美videos中文字幕| 99麻豆久久久国产精品免费优播| 视频在线观看国产精品| 国产情人综合久久777777| 欧美日本韩国一区| 成人少妇影院yyyy| 青娱乐精品在线视频| 国产精品国产三级国产a | av电影在线不卡| 免费高清在线视频一区·| 国产精品高清亚洲| 精品嫩草影院久久| 日本大香伊一区二区三区| 精彩视频一区二区| 亚洲国产精品久久久久秋霞影院| 久久在线免费观看| 欧美片网站yy| 99国产精品一区| 国产美女av一区二区三区| 亚洲成人在线免费| 国产精品久久福利| 日韩精品一区二区三区中文精品| 在线观看亚洲a| 成人免费观看男女羞羞视频| 免费三级欧美电影| 亚洲综合在线免费观看| 欧美国产成人精品| 久久一区二区视频| 777久久久精品| 欧美午夜不卡在线观看免费| 成人在线综合网| 国产剧情一区二区| 久久精品国产亚洲高清剧情介绍 | 久久久久久久久久久久久女国产乱 | 成人18精品视频| 国产精品一区二区男女羞羞无遮挡| 视频一区二区国产| 一区二区三区波多野结衣在线观看| 欧美国产视频在线| 久久久av毛片精品| 欧美大黄免费观看| 欧美日本精品一区二区三区| 91久久精品日日躁夜夜躁欧美| www.欧美精品一二区| 国产91精品一区二区麻豆亚洲| 美脚の诱脚舐め脚责91| 日韩高清国产一区在线| 亚洲主播在线播放| 亚洲精品乱码久久久久久久久| 国产亚洲欧美色| 国产午夜精品久久| 久久婷婷国产综合精品青草| 日韩三级高清在线| 日韩免费视频一区| 精品美女在线观看| 精品国产一区二区三区久久影院|