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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? subtitle.c

?? dvd里面的一個文件系統(tǒng)的代碼
?? C
?? 第 1 頁 / 共 5 頁
字號:
// 2005/09/22 yltseng, add support for unix format new line
#include "SET.H"
#include "user_init.h"

#ifdef SUPPORT_MP4_SUBTITLE

#include "Subtitle.h"
#include "navdata.h"
#include "avsync.h"
#include "memmap0.h"
#include "atapi_if.h"
#include "util.h"
#include "stc.h"
#include "avd.h"
#include "kinf.h"
#include "file_if.h"
#include "cardfs.h"
#ifdef SUPPORT_UNICODE_FONT //joshua 2005/9/2
#include "font_unicode.h"
#endif
#ifndef DVDRELEASE
#define SUBTITLE_DBG     1
#endif

#include "fs_new.h"

#ifdef SUBTITLE_DBG
    //#define DBG_SUBTITLE_BELONG_TO
    //#define DBG_KEYFRAME
    //#define DBG_FILL_SUBTITLE_BUFFER
    //#define DBG_GET_CURRENT_STR
    //#define DBG_PRINT_LOADED_BUFFER
#endif

#ifndef SUBTITLE_DBG
#undef printf
#undef print_block
#define printf(f, a...) do {} while (0)
#define print_block(x,y) do {} while (0)
#endif

#if defined (SUPPORT_SMI_MultiLanguage)||defined(SUPPORT_SMI_MultiColor)//2005-8-16 20:38 zhoulin
UINT8  SmiSupType; 
#endif

#ifdef  SUPPORT_SMI_MultiColor//2005-8-16 20:38 zhoulin
extern UINT32 palette_16color_MP4_SUB[16];
#define CLUTE_TRANS 0x80808000

typedef struct
{   UINT32         value;   
    BYTE           *name;
   
} color_value;

const color_value  color_mapping_table[]=//RGB
{ 
  {0x00FFFF,"aqua"},    {0x808080 ,"gray"}, 
  {0x000080,"navy"},    {0xC0C0C0 ,"silver"}, 
  {0x000000,"black"},   {0x008000,"green"}, 
  {0x808000,"olive"},   {0x008080,"teal"}, 
  {0x0000FF,"blue"},    {0x00FF00,"lime"}, 
  {0x800080,"purple"},  {0xFFFF00,"yellow"}, 
  {0xFF00FF,"fuchsia"}, {0x800000,"maroon"}, 
  {0xFF0000, "red"},    {0xFFFFFF,"white"}, 

};

#define  MAX_color_mapping_Nm   sizeof(color_mapping_table)/sizeof(color_value)
#define MAX_palette_colors 16
BYTE color_temp[MAX_palette_colors][20];
BYTE palette_color_num;

#endif//endif  SUPPORT_SMI_MultiColor



#ifdef SUPPORT_SMI_MultiLanguage//2005-8-16 20:38 zhoulin
#define MAX_langs  5
BYTE lang_temp[MAX_langs][15];
BYTE lang_num;
BYTE nowSupLang=0;

#endif

#ifdef SUBTITLE_SUPPORT_ALL_FORMAT
    #define SUBTITLE_SUPPORT_SRT
    #define SUBTITLE_SUPPORT_SUB_MICRODVD
    #define SUBTITLE_SUPPORT_SUB_SUBVIEWER
    #define SUBTITLE_SUPPORT_SSA
    #define SUBTITLE_SUPPORT_ASS
    #define SUBTITLE_SUPPORT_SMI
    #define SUBTITLE_SUPPORT_PSB
    #define SUBTITLE_SUPPORT_TXT
#elif defined( SUBTITLE_SUPPORT_COMMON_FORMAT )
    #define SUBTITLE_SUPPORT_SRT
    #define SUBTITLE_SUPPORT_SMI
#endif

#ifdef SUBTITLE_SUPPORT_TXT
    #define SUBTITLE_SUPPORT_SUB_SUBVIEWER
    #define SUBTITLE_SUPPORT_TMplayerTXT
#endif

// **************************************************************************************** //
extern FSJPEGDATA*  pFsJpeg;
extern BYTE         ran_read( UINT8 *ptr,UINT32 msf,UINT32 len );
extern void         DispCookOSD0(BYTE bChange);
extern void         ShowOSDText(const char *p,  UINT16 size);
extern void         set_sub_title_Ns(UINT8 Ns);
extern void         osd_ClearOneRegion(BYTE region, BYTE bkColor);//linrc 20050324
extern void         osd_init_OSDSRT(void);

// **************************************************************************************** //
enum INTERNAL_SUP_TYPE
{
    INTERNAL_SUBTITLE_UNKNOWN,
    INTERNAL_SUBTITLE_SRT,
    INTERNAL_SUBTITLE_SUB_MICRODVD,
    INTERNAL_SUBTITLE_SUB_SUBVIEWER,
    INTERNAL_SUBTITLE_SSA,
    INTERNAL_SUBTITLE_ASS,
    INTERNAL_SUBTITLE_SMI,
    INTERNAL_SUBTITLE_PSB,
    INTERNAL_SUBTITLE_TXT,
};

#define NUM_OF_BELONGTO   5
typedef struct
{
    UINT32          loc;
    UINT32          size;
    UINT16          uiBelongTo[NUM_OF_BELONGTO];
    UINT8           uiType;
} MP4_SUBTITLE;

typedef struct
{
    char            aName[128]; // file name( without extension )
    UINT16          uiIndex;    // Index to iso9660 DIR_REC( for video file ) or
                                // Index to subtitle_array( for subtitle file )
    UINT8           uiType;     // 0 for video file, 1 for subtitle file
} SUBTITLE_TEMP_DATA;

typedef struct 
{
    ifunc   pfnParsingSubtitleFunc;
    void    (*pfnGetSubtitleData)( UINT32, void**, UINT32* );
    char    aExtName[4];
    UINT8   uiExternalType;
    UINT8   uiInternalType;
} SUBTITLE_INFO_ENTRY;

// **************************************************************************************** //
#define VIDEO_SUBTITLE_OFFSET       ( _fs9660_buf + ( ( FS9660_SIZE - 1 ) << 10 ) ) // use last 1K size of file system structure
#define VIDEO_SUBTITLE_MAX          ( 1024 / sizeof(MP4_SUBTITLE) )
#define subtitle_array              ( (MP4_SUBTITLE *) VIDEO_SUBTITLE_OFFSET )

#define MATCHBUFSTART               ( SDRAM_BASE_UNCACHED + ( ( SSAVER_YA ) << 10 ) )//( SDRAM_BASE_UNCACHED + ( ( JPEG_YA ) << 10 ) )
#define MATCHBUFSIZE                ( ( SSAVER_PIC_SIZE ) << 10 )//( ( JPEG_CDBUF_SIZE ) << 10 )
#define MATCHBUFEND                 ( MATCHBUFSTART + MATCHBUFSIZE )

#define MS_STC_CLK                  (STC_CLK / 1000)
#define EXTSUPENTRYSIZE             4
#define SUBTITLE_RELOAD_LIMIT       2048    // must be mutiples of 1024

// avi_sup_state
#define EXT_SUP_RESET               0
#define EXT_SUP_INITIALIZED         (1<<0)
#define EXT_SUP_ACTIVATED           (1<<1)
#define EXT_SUP_INDISPLAY           (1<<2)
#define EXT_SUP_NEXTREADY           (1<<3)
#define EXT_SUP_NEEDDATA            (1<<4)

// **************************************************************************************** //
void   (*s_pfnGetSubtitleData)( UINT32, void**, UINT32* )   = NULL;
static ifunc   s_pfnParsingSubtitleFunc                     = NULL;
ifunc  g_pfnPollingSubtitle                                 = NULL;

static UINT32  s_uiSupState;
static UINT32  s_uiSupLen;
static UINT32  s_uiSupLba;
static UINT32  s_uiSupStart;
static UINT32  s_uiSupEnd;
static UINT32* s_pSupIdxPtr         = NULL;
static UINT32* s_pSupIdxEnd         = NULL;
static UINT32  s_uiSupType          = INTERNAL_SUBTITLE_UNKNOWN;

static UINT32* s_pSupIdxBasePtr     = NULL;
static UINT32* s_pSubIdxBaseEndPtr  = NULL;
static UINT32  s_uiSupIdxBaseSize   = 0;
static BYTE*   s_pSupBufPtr         = NULL;
static BYTE*   s_pSupBufEndPtr      = NULL;
static UINT32  s_uiSupBufSize       = 0;
static UINT16  s_uiSupCnt           = 0;
static void*   s_pPrevSup           = NULL;
BYTE   show_unsupported_message     = 0;

// When Changing subtitle initiallization flowchart.
// we should parser two times and check s_supParseAgain.
//BYTE    s_supParseAgain      = 0;  //2006-02-14 mimitsai add for changing sub-title language bug.

// **************************************************************************************** //
extern void ACTIVATE_EXT_SUP()              { s_uiSupState |= EXT_SUP_ACTIVATED; }
extern void DISPLAY_EXT_SUP()               { s_uiSupState |= EXT_SUP_INDISPLAY; }
extern void DEACTIVATE_EXT_SUP()            { s_uiSupState &= (~EXT_SUP_ACTIVATED); }
extern void TURNOFF_EXT_SUP()               { s_uiSupState &= (~EXT_SUP_INDISPLAY); }

extern int  IS_EXT_SUP_INITIALIZED()        { return s_uiSupState & EXT_SUP_INITIALIZED; }
extern int  IS_EXT_SUP_ACTIVATED()          { return s_uiSupState & EXT_SUP_ACTIVATED; }
extern int  IS_EXT_SUP_INDISPLAY()          { return s_uiSupState & EXT_SUP_INDISPLAY; }
extern int  IS_EXT_SUP_NEEDDATA()           { return s_uiSupState & EXT_SUP_NEEDDATA; }

static inline void RESET_EXT_SUP()          { s_uiSupState = EXT_SUP_RESET; }
static inline void INITIALIZE_EXT_SUP()     { s_uiSupState |= EXT_SUP_INITIALIZED; }
static inline void NEEDDATA_EXT_SUP()       { s_uiSupState |= EXT_SUP_NEEDDATA; }
static inline void GOTDATA_EXT_SUP()        { s_uiSupState &= (~EXT_SUP_NEEDDATA); }

static inline int   supParseSubtitle( int iAVIFile, int iSubFile );
static inline int   supParseSubtitleEntry( int );

static inline int   supGetSubtitleCount( int iAVIFile );
static inline int   supGetNthSubtitle( int iAVIFile, int iSubFile );

static inline void  supSetSubtitleIdxBuffer( UINT32* pBufAddr, UINT32 uiSize );
static inline void  supSetSubtitleDataBuffer( BYTE* pBufAddr, UINT32 uiSize );

static void         supGetSubtitleDataTXT( UINT32 uiCurTime, void** pData, UINT32* pSize );
static UINT32       supFillBuffer( BYTE** ppCurrent, UINT32* pByteRead );

static inline int   supPollingSubtitleSRT();
static int          supReplaceSubString( char* pStr, int iSrcLen, const char* pStrSearch, const char* pStrReplace, int iMode );
static int          supReplacePropertyString( char* pStr, int iSrcLen, const char* pStrSearch );
#if defined (SUPPORT_SMI_MultiLanguage)||defined(SUPPORT_SMI_MultiColor)
static int  supReplacePropertyString_rt(char *pStr, int iSrcLen);
#endif
static inline void  supModifyString( char* pStr, int iCnt );

// **************************************************************************************** //
#ifdef SUBTITLE_SUPPORT_SRT
static int     ParsingSubtitleSRT();
#endif

#if defined( SUBTITLE_SUPPORT_SUB_MICRODVD ) || defined( SUBTITLE_SUPPORT_SUB_SUBVIEWER )
static int     ParsingSubtitleSUB();

    #ifdef SUBTITLE_SUPPORT_SUB_MICRODVD
static int     ParsingSubtitleSUB_MicroDVD();
    #endif

    #ifdef SUBTITLE_SUPPORT_SUB_SUBVIEWER
static int     ParsingSubtitleSUB_SubViewer();
    #endif
#endif

#ifdef SUBTITLE_SUPPORT_SSA
static int      ParsingSubtitleSSA();
#endif

#ifdef SUBTITLE_SUPPORT_ASS
static int      ParsingSubtitleASS();
#endif

#ifdef SUBTITLE_SUPPORT_SMI
static int      ParsingSubtitleSMI();
#endif

#ifdef SUBTITLE_SUPPORT_PSB
static int      ParsingSubtitlePSB();
#endif

#ifdef SUBTITLE_SUPPORT_TXT
static int      ParsingSubtitleTXT();
static int      ParsingSubtitleTXT_TXT();
static int      ParsingSubtitleTXT_TXT_OTHER();//denghg add for  some Polish format x:xx:xx:
static int      ParsingSubtitleTXT_TXT_Two_STimeData(); //lyc add 2006-3-15,for TCL more format .txt
static int      ParsingSubtitleTXT_TXT_Two_USTimeData(); //lyc add 2006-3-15,for TCL more format .txt
static int      ParsingSubtitleTXT_TXT_INTERFACE_TIME(); //lyc add 2006-3-15,an interface function for xx:xx:xx:/x:xx:xx:/xx:xx:xx:xx/ xx:xx:xx:xx aa xx:xx:xx:xx
    #ifdef SUBTITLE_SUPPORT_TMplayerTXT
    static int      ParsingSubtitleTmPlayerTXT();
    #endif
#endif

// **************************************************************************************** //
static SUBTITLE_INFO_ENTRY s_aSubtitleInfo[] =
{
    #ifdef SUBTITLE_SUPPORT_SRT
    { ParsingSubtitleSRT, supGetSubtitleDataTXT,   "SRT",  EXT_SUBTITLE_TXT,   INTERNAL_SUBTITLE_SRT },
    #endif

    #if defined( SUBTITLE_SUPPORT_SUB_MICRODVD ) || defined( SUBTITLE_SUPPORT_SUB_SUBVIEWER )
    { ParsingSubtitleSUB, supGetSubtitleDataTXT,   "SUB",  EXT_SUBTITLE_TXT,   INTERNAL_SUBTITLE_SUB_MICRODVD },
    #endif

    #ifdef SUBTITLE_SUPPORT_SSA
    { ParsingSubtitleSSA, supGetSubtitleDataTXT,   "SSA",  EXT_SUBTITLE_TXT,   INTERNAL_SUBTITLE_SSA },
    #endif

    #ifdef SUBTITLE_SUPPORT_ASS
    { ParsingSubtitleASS, supGetSubtitleDataTXT,   "ASS",  EXT_SUBTITLE_TXT,   INTERNAL_SUBTITLE_ASS },
    #endif

    #ifdef SUBTITLE_SUPPORT_SMI
    { ParsingSubtitleSMI, supGetSubtitleDataTXT,   "SMI",  EXT_SUBTITLE_TXT,   INTERNAL_SUBTITLE_SMI },
    #endif

    #ifdef SUBTITLE_SUPPORT_PSB
    { ParsingSubtitlePSB, supGetSubtitleDataTXT,   "PSB",  EXT_SUBTITLE_TXT,   INTERNAL_SUBTITLE_PSB },
    #endif

    #ifdef SUBTITLE_SUPPORT_TXT
    { ParsingSubtitleTXT, supGetSubtitleDataTXT,   "TXT",  EXT_SUBTITLE_TXT,   INTERNAL_SUBTITLE_TXT },
    #endif
};

//#define Support_SubExName_Changed
#ifdef Support_SubExName_Changed  //lyc add-2006-2-20
int supGetOtherFormat()
{
      int i = 0;	
      int iResult = 0; 
      int InfoSize = sizeof( s_aSubtitleInfo ) / sizeof( SUBTITLE_INFO_ENTRY );    
      
      for( ; i <InfoSize; i++ )
        {
            s_pfnParsingSubtitleFunc = s_aSubtitleInfo[ i ].pfnParsingSubtitleFunc;   
            iResult = s_pfnParsingSubtitleFunc(); 
            if((iResult == 1)&&(s_pSupIdxEnd>=s_pSupIdxPtr+EXTSUPENTRYSIZE))  //lyc add 2006-3-10,idx table not empty 
                break; 
        } 
    #ifdef DBG_KEYFRAME    
      printf("===Wrong Sub ExName !!, Now changed to Idx %d==\n",i);     
    #endif
        return iResult; 
}      
#endif
//*********************************************************************************************//
#define _isascii(c)     ( ((c) >= 0x00) && ((c) <= 0x7F) )
#define _iscntrl(c)     ( ( ((c) >= 0x00) && ((c) <= 0x1F) ) || ((c) == 0x7F) )
#define _isprint(c)     ( ((c) >= 0x20) && ((c) <= 0x7E) )
#define _isspace(c)     ( ( ((c) >= 0x09) && ((c) <= 0x0D) ) || ((c) == 0x20) )

#define _islower(c)     ( ((c) >= 'a') && ((c) <= 'z') )
#define _isupper(c)     ( ((c) >= 'A') && ((c) <= 'Z') )
#define _isalpha(c)     ( _isupper() || _islower() )

#define _isdigit(c)     ( ((c) >= '0') && ((c) <= '9') )
#define _isxdigit(c)    ( ( ((c) >= 'A') && ((c) <= 'F') ) || ( ((c) >= 'a') && ((c) <= 'f') ) || _isdigit() )

#define _isalnum(c)     ( _isalpha(c) || _isdigit(c) )

//lyc add  2005-12-29,for SUBT FILE eol flag not "0D0A" but null
//denghg modify for || TO &&.if it is unix tail,last word will be eaten!!
#define _iseol_null(p)  (( *((UINT8*)(p)) == 0x00 ) && ( *((UINT8*)(p+1)) == 0x00 ))
#define _iseol_unix(p)  ( *((UINT8*)(p)) == 0x0A )
#define _iseol_win(p)   ( ( *((UINT8*)(p)) == 0x0D ) && ( *(((UINT8*)(p))+1) == 0x0A ) )
#define _iseol(p)       ( _iseol_unix(p) || _iseol_win(p) || _iseol_null(p))

//*********************************************************************************************//
// mimitsai move from avi_if.c 
// FUNCTION
// supInitSubtitleParam()
//
// DESCRIPTION
// init Subtitle related parameters, variables
void supInitSubtitleParam()
{
    file_extsub_buf         = AVISUPBUF_START;
    file_extsub_bufend      = AVISUPBUF_END;
    file_extsub_bufsize     = AVISUPBUF_SIZE;
    file_extsub_idx_buf     = AVISUPIDX_START;
    file_extsub_idx_bufend  = AVISUPIDX_END;
    file_extsub_idx_bufsize = AVISUPIDX_SIZE;
}

//*********************************************************************************************//

//compare two strings ,ignore uppercase and lowercase 
extern int strncmpIgnoreCase(char *a,char *b,unsigned i)
{   unsigned j;
    char c[i],d[i];
    
    for(j=0;j<i;j++)
    {
         if(a[j]>='a'&&a[j]<='z')    

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一区二区三区不卡| 成人av在线看| 欧美一区二区视频在线观看2020| 亚洲影院在线观看| 欧美系列亚洲系列| 婷婷开心激情综合| 日韩欧美综合一区| 紧缚捆绑精品一区二区| 久久久亚洲精品石原莉奈 | 亚洲综合在线观看视频| 91在线视频免费91| 亚洲成人自拍偷拍| 精品国产一区二区在线观看| 国产精品一区二区三区乱码| 亚洲视频电影在线| 欧美精品久久一区二区三区| 九色综合狠狠综合久久| 国产午夜精品久久久久久免费视 | 精品国产自在久精品国产| 国产黄色91视频| 亚洲欧美电影院| 欧美日韩一区二区三区免费看| 老司机精品视频导航| 日本一区二区三区在线观看| 91麻豆精品在线观看| 日本不卡一区二区三区高清视频| 91麻豆精品国产自产在线| 麻豆高清免费国产一区| 日本一二三四高清不卡| 欧美色图在线观看| 国产精品一区二区91| 亚洲精品免费在线播放| 精品国产一区二区三区av性色| 国产成人精品影院| 亚洲chinese男男1069| 久久众筹精品私拍模特| 一本到不卡免费一区二区| 青青草国产成人99久久| 色天使色偷偷av一区二区| 日韩激情视频在线观看| 国产精品国产三级国产a| 制服丝袜激情欧洲亚洲| 成人av网站在线观看| 日本大胆欧美人术艺术动态| 中文字幕五月欧美| 精品粉嫩aⅴ一区二区三区四区| 91片在线免费观看| 国产精品一级二级三级| 日本网站在线观看一区二区三区| 亚洲天堂精品视频| 日本一区二区在线不卡| 日韩免费观看2025年上映的电影 | 婷婷中文字幕一区三区| 中文字幕一区二区三区不卡| 正在播放亚洲一区| 91美女视频网站| 国产91综合网| 国内外成人在线视频| 日韩精品午夜视频| 亚洲v精品v日韩v欧美v专区 | 亚洲一区二区三区国产| 中文字幕一区二区三中文字幕| 精品国产sm最大网站| 欧美一级生活片| 欧美日韩一区在线| 在线精品视频免费播放| 成人福利视频网站| 丁香婷婷综合网| 国产成人8x视频一区二区| 久久国产精品免费| 久久狠狠亚洲综合| 美女爽到高潮91| 免费成人深夜小野草| 亚州成人在线电影| 久久亚洲精精品中文字幕早川悠里| 色94色欧美sute亚洲线路一ni | 国产精品久久久久精k8| 久久久久亚洲蜜桃| 精品欧美一区二区久久| 精品少妇一区二区三区日产乱码 | 亚洲精品免费在线| 国产精品美女久久久久久2018| 26uuu欧美日本| 久久久影视传媒| 久久欧美一区二区| 91精品婷婷国产综合久久竹菊| 欧美精品v国产精品v日韩精品| 在线区一区二视频| 色婷婷亚洲一区二区三区| 99视频超级精品| 91一区二区在线| 91麻豆国产福利精品| 色94色欧美sute亚洲线路二| 成人永久免费视频| 一本色道**综合亚洲精品蜜桃冫| 99精品久久99久久久久| 色综合天天综合网天天狠天天| 99久久精品国产观看| 91色porny在线视频| 日本韩国欧美在线| 欧美调教femdomvk| 欧美日韩大陆一区二区| 久久蜜臀精品av| 国产精品色一区二区三区| 国产精品丝袜一区| 亚洲欧洲制服丝袜| 亚洲午夜激情网页| 七七婷婷婷婷精品国产| 国产美女一区二区| 懂色av中文字幕一区二区三区| 99久久伊人久久99| 色国产精品一区在线观看| 欧美日本一区二区三区四区| 日韩三级视频在线看| 久久久精品人体av艺术| 亚洲男人都懂的| 五月天国产精品| 精品一二三四在线| www.日韩在线| 欧美视频一区二区三区| 亚洲精品一区二区三区香蕉| 国产精品午夜春色av| 亚洲第一福利一区| 另类欧美日韩国产在线| 国产伦精品一区二区三区免费迷 | 成人av在线资源| 欧美精品日日鲁夜夜添| 26uuu精品一区二区三区四区在线| 国产精品久久网站| 视频一区在线视频| 久久av中文字幕片| 91蜜桃传媒精品久久久一区二区| 欧美区视频在线观看| 国产清纯美女被跳蛋高潮一区二区久久w | 精品久久久久久久久久久久久久久久久 | 69av一区二区三区| 中文字幕欧美激情| 国产综合色产在线精品| 色综合婷婷久久| 精品捆绑美女sm三区| 亚洲日本丝袜连裤袜办公室| 久久99热国产| 在线视频国产一区| 久久久久久久久免费| 免费人成黄页网站在线一区二区| 成人av网站免费观看| 日韩精品一区二区三区老鸭窝| 亚洲男人都懂的| 岛国精品一区二区| 日韩一级黄色片| 国产精品短视频| 国产成人激情av| 51精品秘密在线观看| 一区二区三区四区视频精品免费 | 一本久道久久综合中文字幕| 精品乱人伦小说| 亚洲3atv精品一区二区三区| av一区二区三区四区| 久久伊人中文字幕| 日韩av网站免费在线| 欧美视频在线播放| 亚洲高清免费观看高清完整版在线观看| 国产成a人亚洲| 337p日本欧洲亚洲大胆精品| 日韩精品久久久久久| 在线视频综合导航| 国产精品成人免费| 高清成人在线观看| 日韩欧美高清dvd碟片| 蜜臀久久99精品久久久久宅男| 欧美视频一区在线| 一区二区成人在线视频| 99综合电影在线视频| 中文字幕不卡一区| 丁香网亚洲国际| 欧美国产一区在线| 色综合久久久久综合99| 亚洲人妖av一区二区| av网站免费线看精品| 综合欧美一区二区三区| 99久久综合国产精品| 国产精品成人一区二区艾草| 91麻豆视频网站| 一区二区三区在线播| 欧美日韩一区二区在线观看| 亚洲一区二区三区影院| 精品视频在线视频| 天堂蜜桃一区二区三区| 99精品视频在线观看| 五月综合激情日本mⅴ| 日韩一区二区三区视频在线| 亚洲第一激情av| 日韩一区二区三区四区| 国产精品123区| 国产精品久久三| 欧美无砖砖区免费| 亚洲伊人色欲综合网| 精品国产乱码久久久久久蜜臀| 国产精品18久久久久| 国产精品美女久久福利网站|