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

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

?? exolvidvbi.c

?? pnx1500 video test demo
?? C
?? 第 1 頁 / 共 5 頁
字號:
            pVrendGfxVoSetup->maxLayerSetup[1].needBuffer = False;            pVrendGfxVoSetup->maxLayerSetup[1].size = 0;        }        DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "                       dstRect: %d %d %d %d",                                                    pVrendGfxVoSetup->layerSetup[1].dstRect.ul.x,                                                    pVrendGfxVoSetup->layerSetup[1].dstRect.ul.y,                                                    pVrendGfxVoSetup->layerSetup[1].dstRect.lr.x,                                                    pVrendGfxVoSetup->layerSetup[1].dstRect.lr.y));    }    else    {        // set to some legal values        pVrendGfxVoSetup->layerSetup[1].srcRect.ul.x = 0;        pVrendGfxVoSetup->layerSetup[1].srcRect.ul.y = 0;        pVrendGfxVoSetup->layerSetup[1].srcRect.lr.x = ScreenWidth;        pVrendGfxVoSetup->layerSetup[1].srcRect.lr.y = ScreenHeight;        pVrendGfxVoSetup->layerSetup[1].dstRect.ul.x = 0;        pVrendGfxVoSetup->layerSetup[1].dstRect.ul.y = 0;        pVrendGfxVoSetup->layerSetup[1].dstRect.lr.x = ScreenWidth;        pVrendGfxVoSetup->layerSetup[1].dstRect.lr.y = ScreenHeight;        pVrendGfxVoSetup->layerSetup[1].connect = False;    }    /*-----------------------------------------------------------------------*/    pVrendGfxVoSetup->zOrder.layerZPos[0] = 0;    pVrendGfxVoSetup->zOrder.layerZPos[1] = 1;    pVrendGfxVoSetup->clockHandles[0] =  Null;    pVrendGfxVoSetup->clockHandles[1] =  Null;    if(((exolVideoSetupFlags & exolVideoSetup_UseLayer1) != 0) && ((exolVideoSetupFlags & exolVideoSetup_UseLayer0) == 0))        pVrendGfxVoSetup->mainLayer = 1;     else        pVrendGfxVoSetup->mainLayer = 0;     pVrendGfxVoSetup->mbsClockFreq = tmolVrendGfxVo_mbsClockFreq144Mhz;	pVrendGfxVoSetup->vbiSetup.buffer1 = Null;	pVrendGfxVoSetup->vbiSetup.buffer2 = Null;	if(ivp->VbiInsertionEnabled)	{		pVrendGfxVoSetup->vbiSetup.vbiEnable = True;	}	else	{		pVrendGfxVoSetup->vbiSetup.vbiEnable = False;	}	    tmError = tmolVrendGfxVoInstanceSetup(ivp->hVrendGfxVo, pVrendGfxVoSetup);    DBG_ASSERT2((tmError == TM_OK),("tmolVrendGfxVoInstanceSetup failed:0x%X\n",tmError));    /*------------------------ Setup Denc (VencAna) -------------------------*/        tmError = tmVideoMode_GetName (                        ivp->OutputVideoMode,       //  I: mode to query                        VideoModeName);             //  O: receives mode name    DBG_ASSERT2((tmError == TM_OK),("tmVideoMode_GetName failed:0x%X\n",tmError));    if(ivp->AnalogVideoEncoder)    {    // Setup VencAna.    tmError =           (strcmp(VideoModeName, "pal") == 0) ?   tmVencAna_SetColorSystem(ivp->pVencAnaInst, tmVencAna_PalBg):        (strcmp(VideoModeName, "ntsc") == 0)?   tmVencAna_SetColorSystem(ivp->pVencAnaInst, tmVencAna_NtscM):        TM_OK ;    DBG_ASSERT2((tmError == TM_OK),("tmVencAna_SetColorSystem failed:0x%X\n",tmError));    tmError = tmVencAna_SetEncodingType(ivp->pVencAnaInst, ivp->OutputVideoAdapter);    DBG_ASSERT2((tmError == TM_OK),("tmVencAna_SetEncodingType failed:0x%X\n",tmError));    tmError = tmVencAna_ApplyExtInterfaceSettings(ivp->pVencAnaInst);        DBG_ASSERT2((tmError == TM_OK),("tmVencAna_ApplyExtInterfaceSettings failed:0x%X\n",tmError));    }        DBG_PRINT((dbgexolVideo, DBG_INTERFACE_LEAVE, "exolVideoSetupVrendGfxVo" ));    return tmError;}//-----------------------------------------------------------------------------// FUNCTION:    exolVideoCreateIoDescr://// DESCRIPTION: This function does//                          set input format//                          set src rect//                          set dst rect//// RETURN:      tmErrorCode_t//// NOTES:       None//-----------------------------------------------------------------------------//tmErrorCode_t exolVideoCreateIoDescr(     ptsaDefaultCapabilities_t   pDefaultCap1,    ptsaDefaultInstanceSetup_t  pDefaultSetup1,    int                         SenderIndex,    ptsaDefaultCapabilities_t   pDefaultCap2,    ptsaDefaultInstanceSetup_t  pDefaultSetup2,    int                         ReceiverIndex,    ptmVideoFormat_t            pSetupFormat,    int                         NrPackets,    tmmlMmspHandle_t            hMemSpace,    ptsaInOutDescriptor_t*      ppIoDescr){    tmErrorCode_t                   tmError = TM_OK;    ptsaInOutDescriptorSetup_t      pIodSetup=Null;    UInt32                          NrBuffers=0;    UInt32                          BufferSize=0;    int i;    DBG_PRINT((dbgexolVideo, DBG_INTERFACE_ENTER, "exolVideoCreateIoDescr" ));    DBG_ASSERT2((pDefaultCap1 != 0),("exolVideoCreateIoDescr pDefaultCap1 Null"));    DBG_ASSERT2((pDefaultCap2 != 0),("exolVideoCreateIoDescr pDefaultCap2 Null"));    DBG_ASSERT2((ppIoDescr != 0),("exolVideoCreateIoDescr ppIoDescr Null"));    DBG_ASSERT2((pSetupFormat != 0),("exolVideoCreateIoDescr pSetupFormat Null"));    tmError = tmVideoUtilGetFormatNrBuffers(                                    pSetupFormat,           //const Void *  pFormat,        //  I: av format                                    &NrBuffers);            //pUInt32       pNrBuffers      //  O: nr buffers this format uses.    DBG_ASSERT2((tmError == TM_OK),("tmVideoUtilGetFormatNrBuffers failed:0x%X\n",tmError));    /*-----------------------------------------------------------------------*/    /*                     Create InOutDescriptors                           */    /*-----------------------------------------------------------------------*/    //pIodSetup = (ptsaInOutDescriptorSetup_t)malloc((sizeof(tsaInOutDescriptorSetup_t)) + (NrBuffers - 1) * sizeof(UInt32));    tmError = tmmlMalloc(                            hMemSpace,                            sizeof(tsaInOutDescriptorSetup_t) + 8,                            (pVoid*)&pIodSetup,tmmlMallocCacheAligned | tmmlMallocCleared);    pIodSetup->format          = Null; //(ptmAvFormat_t)pSetupFormat; //Null; // using Null format let us change the format afterwards    pIodSetup->flags           = tsaIODescSetupFlagCacheMalloc | tsaIODescSetupFlagInvalidateDataout;    pIodSetup->fullQName       = "A0IF";    pIodSetup->emptyQName      = "A0IE";    pIodSetup->queueFlags      = 0;    pIodSetup->senderCap       = pDefaultCap1;  //ivp->pVcapVipCap->defaultCapabilities;    pIodSetup->receiverCap     = pDefaultCap2;  //ivp->pVrendGfxVoCap->defaultCapabilities;    pIodSetup->senderIndex     = SenderIndex;   //VCAPVIP2_MAIN_OUTPUT;    pIodSetup->receiverIndex   = ReceiverIndex; //VRENDGFXVO_MAIN_INPUT;    pIodSetup->packetBase      = 0xF40;    pIodSetup->numberOfPackets = NrPackets;    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "Allocating iodescr buffers:" ));    for(i=0;i < NrBuffers;i++)    {        tmError = tmVideoUtilGetFormatBufferSize(                                    pSetupFormat,           //const Void *        pFormat,        //  I: av format                                     i,                      //UInt32              bufferNr,       //  I: buffer index                                    &BufferSize);           //pUInt32             pBufferSize     //  O: size of buffer.        DBG_ASSERT2((tmError == TM_OK),("tmVideoUtilGetFormatBufferSize failed:0x%X\n",tmError));        pIodSetup->bufSize[i]      = BufferSize;            //768 * 576 * 2;        DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "Buffer %d size: %d",i,BufferSize ));    }        pIodSetup->numberOfBuffers = NrBuffers;        // create IO descriptor    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "Creating IO descriptor..." ));    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->format:0x%X",pIodSetup->format ));    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->format->size:%d",pSetupFormat->size ));    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->format->dataClass:%d",pSetupFormat->dataClass ));    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->format->dataType:0x%X",pSetupFormat->dataType ));    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->format->dataSubtype:0x%X",pSetupFormat->dataSubtype ));    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->format->description:0x%X",pSetupFormat->description ));    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->senderCap:0x%X",pIodSetup->senderCap ));    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->receiverCap:0x%X",pIodSetup->receiverCap ));    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->senderIndex:%d",pIodSetup->senderIndex ));    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->receiverIndex:%d",pIodSetup->receiverIndex ));    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->numberOfPackets:%d",pIodSetup->numberOfPackets ));    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->numberOfBuffers:%d",pIodSetup->numberOfBuffers ));    tmError = tsaDefaultInOutDescriptorCreateInMmsp(                                                        ppIoDescr,                                                         pIodSetup,                                                        hMemSpace,                                                        tmmlMallocCacheAligned | tmmlMallocCleared);    DBG_ASSERT2((tmError == TM_OK),("tsaDefaultInOutDescriptorCreate failed:0x%X\n",tmError));    tmmlFree(pIodSetup);    pIodSetup=Null;    /*-----------------------------------------------------------------------*/    /*                     Install Format                                    */    /*-----------------------------------------------------------------------*/        tmError = tsaDefaultSenderReconnect(*ppIoDescr,                                 SenderIndex,                                 pDefaultCap1,                                 NULL);    DBG_ASSERT2((tmError == TM_OK),("tsaDefaultSenderReconnect failed:0x%X\n",tmError));        tmError = tsaDefaultReceiverReconnect(*ppIoDescr,                                 ReceiverIndex,                                 pDefaultCap2);    DBG_ASSERT2((tmError == TM_OK),("tsaDefaultReceiverReconnect failed:0x%X\n",tmError));    if(pDefaultSetup1)        pDefaultSetup1->outputDescriptors[SenderIndex] = *ppIoDescr;        if(pDefaultSetup2)        pDefaultSetup2->inputDescriptors[ReceiverIndex] = *ppIoDescr;            tmError = tsaDefaultInstallFormat(*ppIoDescr,(ptmAvFormat_t) pSetupFormat);    DBG_ASSERT2((tmError == TM_OK),("tsaDefaultInstallFormat failed:0x%X\n",tmError));        DBG_PRINT((dbgexolVideo, DBG_INTERFACE_LEAVE, "exolVideoCreateIoDescr" ));    return tmError;}

//-----------------------------------------------------------------------------
// FUNCTION:    exolVideoCreateIoDescr:
//
// DESCRIPTION: This function does
//                          set input format
//                          set src rect
//                          set dst rect
//
// RETURN:      tmErrorCode_t
//
// NOTES:       None
//-----------------------------------------------------------------------------
//


tmErrorCode_t 
exolVbiCreateIoDescr( 
    ptsaDefaultCapabilities_t   pDefaultCap1,
    ptsaDefaultInstanceSetup_t  pDefaultSetup1,
    int                         SenderIndex,
    ptsaDefaultCapabilities_t   pDefaultCap2,
    ptsaDefaultInstanceSetup_t  pDefaultSetup2,
    int                         ReceiverIndex,
    ptmVideoFormat_t            pSetupFormat,
    int                         NrPackets,
    tmmlMmspHandle_t            hMemSpace,
    ptsaInOutDescriptor_t*      ppIoDescr)
{
    tmErrorCode_t                   tmError = TM_OK;
    ptsaInOutDescriptorSetup_t      pIodSetup=Null;

	(void)NrPackets;
    
    DBG_PRINT((dbgexolVideo, DBG_INTERFACE_ENTER, "exolVbiCreateIoDescr" ));
    DBG_ASSERT2((pDefaultCap1 != 0),("exolVbiCreateIoDescr pDefaultCap1 Null"));
    DBG_ASSERT2((pDefaultCap2 != 0),("exolVbiCreateIoDescr pDefaultCap2 Null"));
    DBG_ASSERT2((ppIoDescr != 0),("exolVbiCreateIoDescr ppIoDescr Null"));
    DBG_ASSERT2((pSetupFormat != 0),("exolVbiCreateIoDescr pSetupFormat Null"));

    /*-----------------------------------------------------------------------*/
    /*                     Create InOutDescriptors                           */
    /*-----------------------------------------------------------------------*/
    
    tmError = tmmlMalloc(
                            hMemSpace,
                            sizeof(tsaInOutDescriptorSetup_t) + 8,
                            (pVoid*)&pIodSetup,tmmlMallocCacheAligned | tmmlMallocCleared);

    pIodSetup->format          = Null; //(ptmAvFormat_t)pSetupFormat; //Null; // using Null format let us change the format afterwards
    pIodSetup->flags           = tsaIODescSetupFlagCacheMalloc | tsaIODescSetupFlagInvalidateDataout;
    pIodSetup->fullQName       = "vb0f";
    pIodSetup->emptyQName      = "vb0e";
    pIodSetup->queueFlags      = 0;
    pIodSetup->senderCap       = pDefaultCap1;  //ivp->pVcapVipCap->defaultCapabilities;
    pIodSetup->receiverCap     = pDefaultCap2;  //ivp->pVrendGfxVoCap->defaultCapabilities;
    pIodSetup->senderIndex     = SenderIndex;   //VCAPVIP2_MAIN_OUTPUT;
    pIodSetup->receiverIndex   = ReceiverIndex; //VRENDGFXVO_MAIN_INPUT;
    pIodSetup->packetBase      = 0x120;
    //pIodSetup->numberOfPackets = 12;
	//There is no VBI 'A/V sync' implemented which means that the pin can run out of packets 
	//at the start for a while until things start getting in stride. The reason for this is 
	//that at startup the VIP floods the pin with full packets (it gets started first) and the 
	//renderer never catches up so data is missed. For the moment I have increased the number 
	//of packets on the pin but the correct solution is to drop the out of date packets and 
	//not try and play them (VBI version of AV Sync). A/V sync is not implemented in MPTK 
	//and so when the video A/V sync gets implemented - the VBI sync will also need to be implemented.
	//( Please note : I have increased the number of packets so this problem is not currently seen,
	//the number of packets should be decreased when VBI 'A/V Sync' is implemented in MPTK)
	pIodSetup->numberOfPackets = 18;

	// buffer1 = offset(0x2004) + (42 * 50) + 128 byte alignment => 10368
	// buffer2 = offset(0xc0) + 256 + 128 byte alignment => 512

	pIodSetup->bufSize[0]      = 10368;
    pIodSetup->bufSize[1]      = 512;
    pIodSetup->numberOfBuffers = 2;

    
    // create IO descriptor
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "Creating IO descriptor..." ));
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->format:0x%X",pIodSetup->format ));
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->format->size:%d",pSetupFormat->size ));
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->format->dataClass:%d",pSetupFormat->dataClass ));
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->format->dataType:0x%X",pSetupFormat->dataType ));
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->format->dataSubtype:0x%X",pSetupFormat->dataSubtype ));
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->format->description:0x%X",pSetupFormat->description ));
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->senderCap:0x%X",pIodSetup->senderCap ));
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->receiverCap:0x%X",pIodSetup->receiverCap ));
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->senderIndex:%d",pIodSetup->senderIndex ));
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->receiverIndex:%d",pIodSetup->receiverIndex ));
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->numberOfPackets:%d",pIodSetup->numberOfPackets ));
    DBG_PRINT((dbgexolVideo, DBG_LEVEL_1, "pIodSetup->numberOfBuffers:%d",pIodSetup->numberOfBuffers ));

    tmError = tsaDefaultInOutDescriptorCreateInMmsp(
                                                        ppIoDescr, 
                                

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩电影免费在线看| 欧美一区二区三区播放老司机| 免费观看30秒视频久久| 亚洲午夜电影网| 亚洲444eee在线观看| 五月天精品一区二区三区| 亚洲第一福利视频在线| 天天综合色天天综合| 青青青伊人色综合久久| 国产专区欧美精品| 国产盗摄女厕一区二区三区| 成人av小说网| 日本电影欧美片| 日韩欧美资源站| 国产亚洲综合在线| 1区2区3区国产精品| 有码一区二区三区| 奇米精品一区二区三区在线观看一 | 国产成人aaa| av爱爱亚洲一区| 欧美日韩精品欧美日韩精品一| 欧美精品久久天天躁| 久久综合久久久久88| 中文字幕一区二区在线观看| 伊人开心综合网| 日韩成人精品在线观看| 国产一二精品视频| 91偷拍与自偷拍精品| 制服丝袜中文字幕亚洲| 日本一区二区在线不卡| 亚洲国产精品综合小说图片区| 九色综合国产一区二区三区| 成人性生交大片免费看在线播放| 欧亚洲嫩模精品一区三区| 精品精品国产高清一毛片一天堂| 国产精品久久久久一区二区三区共| 一区二区三区在线观看国产| 国精产品一区一区三区mba桃花| 99久久精品国产毛片| 日韩一区二区在线播放| 亚洲三级小视频| 国产中文字幕一区| 欧美日韩国产高清一区二区三区 | 国产一区三区三区| 91蜜桃婷婷狠狠久久综合9色| 日韩写真欧美这视频| 亚洲精品亚洲人成人网在线播放| 国内精品在线播放| 欧美日韩激情在线| 中文字幕一区二区在线观看| 精品一区二区三区香蕉蜜桃| 欧洲一区二区三区在线| 国产精品无圣光一区二区| 美女高潮久久久| 欧美日韩在线播放一区| 成人欧美一区二区三区1314| 国产乱码精品一区二区三区忘忧草 | 亚洲精品大片www| 国产91综合网| 国产校园另类小说区| 久久精品久久99精品久久| 欧美另类高清zo欧美| 亚洲在线免费播放| 色先锋aa成人| 亚洲同性gay激情无套| 国产成人欧美日韩在线电影| 久久久久国色av免费看影院| 麻豆精品新av中文字幕| 91精品国产美女浴室洗澡无遮挡| 亚洲一级片在线观看| 色哟哟国产精品| ●精品国产综合乱码久久久久| 国产iv一区二区三区| 久久久噜噜噜久久中文字幕色伊伊 | 从欧美一区二区三区| 久久免费视频色| 国产成人午夜视频| 欧美极品少妇xxxxⅹ高跟鞋| 国产凹凸在线观看一区二区| 国产日韩欧美精品电影三级在线| 国产成人亚洲综合a∨猫咪| 国产日韩欧美激情| 91在线云播放| 亚洲成人资源在线| 91精品国产丝袜白色高跟鞋| 日韩不卡手机在线v区| 精品免费视频一区二区| 国产一区二区女| 国产精品毛片久久久久久久| 97精品国产露脸对白| 亚洲国产一区二区三区青草影视| 欧美精选在线播放| 精品写真视频在线观看| 欧美激情一区二区在线| 一本大道综合伊人精品热热| 五月天激情综合网| 久久综合国产精品| 一本大道久久a久久综合婷婷| 亚洲制服丝袜一区| 精品毛片乱码1区2区3区| 国产高清在线观看免费不卡| 一区二区免费在线播放| 日韩一级完整毛片| av男人天堂一区| 五月激情六月综合| 久久精品一二三| 欧美日韩日日摸| 国产福利91精品一区| 亚洲一区二区在线免费观看视频| 日韩美女一区二区三区四区| 成人理论电影网| 奇米影视在线99精品| 国产精品国产a级| 日韩精品在线看片z| 成人av电影观看| 免费高清在线一区| 一区二区三区四区国产精品| 26uuu精品一区二区| 欧美性受xxxx黑人xyx| 大美女一区二区三区| 免费在线看成人av| 一区二区三区在线免费视频| 久久久久久久久久电影| 欧美三级视频在线| 成人av在线播放网站| 国产一区二区三区免费播放| 亚洲午夜久久久久久久久电影院| 国产欧美一区二区三区鸳鸯浴| 欧美吞精做爰啪啪高潮| 国产精品538一区二区在线| 亚洲五码中文字幕| 国产精品欧美久久久久一区二区| 9191成人精品久久| 精品视频1区2区| 91香蕉视频黄| 99免费精品视频| 粉嫩一区二区三区在线看| 玖玖九九国产精品| 青青草伊人久久| 美女在线一区二区| 日本美女视频一区二区| 午夜精品久久久久久久久久久| 亚洲视频 欧洲视频| 国产精品久久久久毛片软件| 国产午夜久久久久| 国产欧美日韩在线视频| xvideos.蜜桃一区二区| 日韩一区二区免费视频| 日韩视频一区二区| 欧美草草影院在线视频| 欧美xxxxxxxx| 久久久久国产精品麻豆ai换脸| 欧美精品一区二区在线播放 | 成人app在线| 99精品偷自拍| 91美女片黄在线观看| 色综合天天综合在线视频| 色综合久久中文字幕综合网| 91福利国产精品| 欧美日韩视频不卡| 日韩午夜小视频| 久久综合九色综合97婷婷女人 | 欧美日韩精品一区二区三区蜜桃 | 91丨porny丨中文| 日本韩国欧美一区| 欧美精品日日鲁夜夜添| 日韩精品一区二区三区视频在线观看| www国产成人| 中文字幕在线视频一区| 亚洲精品国产成人久久av盗摄 | 欧美日本乱大交xxxxx| 欧美一区二区在线免费播放| 精品噜噜噜噜久久久久久久久试看| 日韩午夜av电影| 国产视频视频一区| 亚洲精品福利视频网站| 裸体健美xxxx欧美裸体表演| 国产盗摄一区二区| 欧美在线999| 久久理论电影网| 亚洲欧美日韩一区二区| 久久精品久久精品| 99视频在线观看一区三区| 欧美精品日韩综合在线| 国产色产综合色产在线视频| 亚洲综合色区另类av| 狠狠色2019综合网| 在线观看国产精品网站| 欧美成人一区二区三区片免费 | 国产精品丝袜在线| 亚洲一区二区三区不卡国产欧美| 精品一区二区国语对白| 欧美四级电影在线观看| 国产视频一区在线观看| 日韩成人午夜精品| 91官网在线免费观看| 国产欧美一区二区三区沐欲 | 懂色中文一区二区在线播放| 欧美日韩一级片在线观看| 国产精品久久久久久久久免费相片|