青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

蝸牛的家
男兒當(dāng)自強(qiáng)
posts - 48,  comments - 21,  trackbacks - 0
RTPSession
      對于大多數(shù)的RTP應(yīng)用程序,RTPSession類可能是JRTPLIB唯一使用的類。它能完全處理RTCP部份的數(shù)據(jù)包,所以用戶可以把精力集中在真正的數(shù)據(jù)收發(fā)。
      要知道RTPSession類在多線程下并不是安全的,因此,用戶要通過某些鎖同步機(jī)制來保證不會出現(xiàn)在不同線程當(dāng)中調(diào)用同一個RTPSession實例。
      RTPSession類有如下的接口。

      • RTPSession(RTPTransmitter::TransmissionProtocol proto = RTPTransmitter::IPv4UDPProto)
      使用proto類型傳輸層創(chuàng)建一個PRTSession實例。如果proto使用用戶自定義(user-defined)傳輸層,則相應(yīng)的NewUserDefinedTransmitter()函數(shù)必須實現(xiàn)。ps:這里默認(rèn)就行了,默認(rèn)就是IPV4網(wǎng)絡(luò)。

      • int Create(const RTPSessionParams &sessparams, const RTPTransmissionParams*transparams = 0)
      使用RTPSession參數(shù)sessparams和RTPTransmission參數(shù)transparams 真正創(chuàng)建一個RTP會話。如果transparams 為NULL,則使用默認(rèn)的參數(shù)。ps:RTPSessionParams 我們可能要設(shè)得比較多,RTPTransmissionParams參數(shù)就只要設(shè)置其中的端口就行了,端口一定要設(shè)對,不然進(jìn)行組播時,這個進(jìn)程將不接收數(shù)據(jù)。設(shè)置方式可以看example.cpp。

      • void Destroy()
      離開一個會話但不向其它組成員發(fā)送BYE包。ps:我不推薦用這個函數(shù)除非是錯誤處理,正常離開我們應(yīng)該用ByeDestroy()。
      
      • void BYEDestroy(const RTPTime &maxwaittime, const void *reason,size t reasonlength)
      發(fā)送一個BYE包并且離開會話。在發(fā)送BYE包前等待maxwaittime,如果超時,會不發(fā)送BYE包直接離開,BYE包會包含你的離開原因reason。相應(yīng)的reasonlength表示reason長度。ps:因為BYE包是一個RTCP包,RTCP不是要發(fā)就發(fā)的,它的發(fā)送時間是為了平衡帶寬通過計算得出來的,那就很有可能到了要發(fā)的時候以經(jīng)超過了maxwaittime時間了,作者可能認(rèn)一直保留個這會話這么久沒意義。當(dāng)然,我常常把maxwaittime設(shè)得很大

      • bool IsActive()
      看看這個RTPSession實例是否以經(jīng)通過Create建立了真實的會話。

      • uint32 t GetLocalSSRC()
      返回我們的SSRC。ps:至于什么是SSRC,去看看RFC3550吧。我說過JRTPLIB只是RTP協(xié)議的包裝,并沒有做任何應(yīng)用的事情。

      • int AddDestination(const RTPAddress &addr)
      添加一個發(fā)送目標(biāo)。ps: 當(dāng)然,如果我們使用組播,這里只用調(diào)用一次,把我們的組播地址寫進(jìn)去。這樣,這組的全部人都能收到你發(fā)的包。但是組播可因特網(wǎng)的上設(shè)置很煩。而且用組播測試也很煩(組播必須BIND一個端口,如果你想在同一臺機(jī)器上運(yùn)行兩個軟件實例來沒試,你就會發(fā)現(xiàn)同一個端口BIND兩次,當(dāng)然,后面那次會失敗,也就是說測試不了,要測?找兩臺機(jī)器,或用虛擬機(jī)),如果組播不滿足,我們就要把組播變在單播,這時就要返復(fù)調(diào)用這個函數(shù)把其它組成員的IP都加進(jìn)來了。具體可以看看example3.cpp。

      • int DeleteDestination(const RTPAddress &addr)
      從發(fā)送地址列表中刪除一下地址。

      • void ClearDestinations()
      清除發(fā)送地址列表。

      • bool SupportsMulticasting()
      返回JRTPLIB是否支持組播。ps:這里指JRTPLIB本身,不是你的真實網(wǎng)絡(luò)。編譯JRTPLIB庫時可能指定。
.
      • int JoinMulticastGroup(const RTPAddress &addr)
      加入一個組播組addr。

      • int LeaveMulticastGroup(const RTPAddress &addr)
       離開一個組播組addr。

      • void LeaveAllMulticastGroups()
      離開所有組播組。ps:我們可以同時加入多個組播組。.

      • int SendPacket(const void *data, size t len)
      • int SendPacket(const void *data, size t len, uint8 t pt, bool mark,uint32 t timestampinc)
      • int SendPacketEx(const void *data, size t len, uint16 t hdrextID,const void *hdrextdata, size t numhdrextwords)
      • int SendPacketEx(const void *data, size t len, uint8 t pt, boolmark, uint32 t timestampinc, uint16 t hdrextID, const void *hdrextdata,size t numhdrextwords)
      上面的4個函數(shù)都是發(fā)送數(shù)據(jù)包的,我想如果你沒有看RTP協(xié)議,我說了你也暈。如果你RTP協(xié)議看了,再看看RTPSession.h的注識,你就懂了。

      • int SetDefaultPayloadType(uint8 t pt)
      設(shè)定默認(rèn)的RTP PayloadType為PT。ps:和上面的第一個和第三個發(fā)送函數(shù)配套。至于應(yīng)該設(shè)個什么數(shù),如果你看BAIDU上亂七八糟的文章,當(dāng)然的亂設(shè)就可能了。其實應(yīng)該按RFC3551,根據(jù)你要傳輸?shù)拿襟w類型來設(shè)。

      • int SetDefaultMark(bool m)
      這設(shè)RTP數(shù)據(jù)包的Mark標(biāo)識。ps:設(shè)為什么值好?這個,呵呵,連RFC3550也不能確定了。要看具體的RTP Payload規(guī)范,MPEG的,H263的都不一樣。
      MPEG2 
   www.ietf.org/rfc/rfc2250.txt 
      MPEG4    
www.rfc-editor.org/rfc/rfc3016.txt 
      H263        www.ietf.org/rfc/rfc2190.txt
 

      • int SetDefaultTimestampIncrement(uint32 t timestampinc)
      設(shè)置默認(rèn)的時間戳的增量。ps:也是和上的第一和第三個函數(shù)配套的。每發(fā)一個RTP數(shù)據(jù)包timestamp就會自動增加

      • int IncrementTimestamp(uint32 t inc)
      這個函數(shù)用來手工增加Timestamp。有時我這很好用,例如,一個RTP數(shù)據(jù)包因為只含有靜音數(shù)據(jù),我們沒有發(fā)送,這是我們就應(yīng)手工增加Timestamp以便發(fā)下一個RTP數(shù)據(jù)包時它的Timestamp是正確的。

      • int IncrementTimestampDefault()
      這個函數(shù)用于增加由SetDefaultTimestampIncrement設(shè)定的值。有時候這很有用,例如,一個RTP數(shù)據(jù)包因為只含有靜音數(shù)據(jù),我們沒有發(fā)送。這時,這個函數(shù)就會被調(diào)用用來設(shè)置Timestamp以便下一個RTP包的Timestamp是正確的。

      • int SetPreTransmissionDelay(const RTPTime &delay)
      This function allows you to inform the library about the delay between
sampling the first sample of a packet and sending the packet. This delay is
taken into account when calculating the relation between RTP timestamp
and wallclock time, used for inter-media synchronization.

      • RTPTransmissionInfo *GetTransmissionInfo()
      This function returns an instance of a subclass of RTPTransmissionInfo
which will give some additional information about the transmitter (a list
of local IP addresses for example). The user has to delete the returned
instance when it is no longer needed.
      
      • int Poll()
      If you’re not using the poll thread, this function must be called regularly
to process incoming data and to send RTCP data when necessary.
61

      • int WaitForIncomingData(const RTPTime &delay,bool *dataavailable= 0)
      Waits at most a time delay until incoming data has been detected. Only
works when you’re not using the poll thread. If dataavailable is not NULL,
it should be set to true if data was actually read and to false otherwise.

      • int AbortWait()
      If the previous function has been called, this one aborts the waiting. Only
works when you’re not using the poll thread.

      • RTPTime GetRTCPDelay()
      Returns the time interval after which an RTCP compound packet may have
to be sent. Only works when you’re not using the poll thread.

      • int BeginDataAccess()
      下面的函數(shù)(直到EndDataAccess)要在BeginDataAccess 和EndDataAccess之間被調(diào)用,BeginDataAccess確保輪詢(poll)線程不會在這期間訪問source table 。EndDataAccess 調(diào)用完成后,輪詢(poll)線程會得到鎖而繼續(xù)訪問。ps:首先,你里的source table中的每一個source表示參與會議中的每一個參與者的每一個獨(dú)立的媒體流。我們會在下面用到他們,但同時,poll線程也會輪詢它們以正確處理和RTCP有關(guān)的內(nèi)容。
  

      • bool GotoFirstSource()
      開始遞歸參與者的第一個流,如果找到了,就返回tree,否則返回false。ps:我們通過這個函數(shù)和下面的GotoNextSource遍歷source table中的每一個source。
      
      • bool GotoNextSource()
      設(shè)置當(dāng)前的源(source)為source table中的下一個源。如果已經(jīng)到尾部了就返回false.
     
      • bool GotoPreviousSource()
      設(shè)置當(dāng)前的源(source)為source table中上一個源。如果已經(jīng)到頭部了就返回false.


      • bool GotoFirstSourceWithData()
      開始遞歸參與者中第一個有RTP數(shù)據(jù)的流,如果找到了,就返回tree,否則返回false。PS:在接收數(shù)據(jù)是我們常用的是這套函數(shù),因為如果沒有數(shù)據(jù)要來都沒用。

      • bool GotoNextSourceWithData()
      設(shè)置當(dāng)前的源(source)為source table中有RTP數(shù)據(jù)的下一個源。如果已經(jīng)到尾部了就返回false.

      • bool GotoPreviousSourceWithData()
      設(shè)置當(dāng)前的源(source)為source table中有RTP數(shù)據(jù)的上一個源。如果已經(jīng)到頭部了就返回false.

      • RTPSourceData *GetCurrentSourceInfo()
      返回當(dāng)前參與者的當(dāng)前源(source)的RTPSourceData 實列。ps:返回的這個RTPSourceData 就是本進(jìn)程從期它參與者的RTCP數(shù)據(jù)包中收集得到的信息,對我們來說其實很有用,只是作者的例程沒有用上,國內(nèi)的網(wǎng)絡(luò)也沒有提到。在RFC3550中有關(guān)RTCP的東西都在這了,看過RFC3550的人都知到,里頭談得最多的就是RTCP。這個類我們以后會專門說。
      
      
      • RTPSourceData *GetSourceInfo(uint32 t ssrc)
      返回由ssrc指定的RTPSourceData ,或都NULL(當(dāng)這個條目不存在)。ps:這個函數(shù)也很有用。因為GetCurrentSourceInfo只有在GotoFirstSource等上下文當(dāng)中才能用。如果我們是在RTPSource子類的成員函數(shù)中,我們沒有這個上下文,就只能用這個函數(shù)。
 
      • RTPPacket *GetNextPacket()
      得到當(dāng)前參與者當(dāng)前媒體流的下一個RTP數(shù)據(jù)包。

      • int EndDataAccess()
      請看BeginDataAccess

      • int SetReceiveMode(RTPTransmitter::ReceiveMode m)
      Sets the receive mode to m, which can be one of the following:
      – RTPTransmitter::AcceptAll
            All incoming data is accepted, no matter where it originated from.
      – RTPTransmitter::AcceptSome
            Only data coming from specific sources will be accepted.
      – RTPTransmitter::IgnoreSome
            All incoming data is accepted, except for data coming from a specificset of sources.
        Note that when the receive mode is changed, the list of addressed to be ignored or accepted will be cleared.

      • int AddToIgnoreList(const RTPAddress &addr)
      Adds addr to the list of addresses to ignore.

      • int DeleteFromIgnoreList(const RTPAddress &addr)
      Deletes addr from the list of addresses to ignore.

      • void ClearIgnoreList()
      Clears the list of addresses to ignore.

      • int AddToAcceptList(const RTPAddress &addr)
      Adds addr to the list of addresses to accept.

      • int DeleteFromAcceptList(const RTPAddress &addr)
      Deletes addr from the list of addresses to accept.

      • void ClearAcceptList()
      Clears the list of addresses to accept.

      • int SetMaximumPacketSize(size t s)
      Sets the maximum allowed packet size to s.

      • int SetSessionBandwidth(double bw)
      Sets the session bandwidth to bw, which is specified in bytes per second.

      • int SetTimestampUnit(double u)
      Sets our own timestamp unit to u. The timestamp unit is defined as a time
interval divided by the number of samples in that interval: for 8000Hz
audio this would be 1.0/8000.0.

      • void SetNameInterval(int count)
      在處理source table中的sourcese后,RTCP packet builder(我們不用理這個內(nèi)部的東西)會檢查是否有其它(non-CNAME)SDES項目要發(fā)送。如果count為零或負(fù)數(shù),則不發(fā)送,如果count為正數(shù),則在sources table處理count次后會把SDES name item加到當(dāng)前RTCP包中。ps: 其實每次處理sources table都會伴隨都SDES RTCP數(shù)據(jù)包的發(fā)送,在這個數(shù)據(jù)包當(dāng)中CNAME是必須的,但其它的項目不是必須的,這就函數(shù)確定了NAME項目發(fā)送的頻度,如果為1,則表不每個 SDES RTCP數(shù)據(jù)包都帶著它,如果為2則每兩個SDES數(shù)據(jù)包就發(fā)送一次NAME項目,下面的SetEMailInterval、 SetLocationInterval、SetPhoneInterval、SetToolInterval、SetNoteInterval都是同一原理。關(guān)于這個ITEM的描述,請看RFC3550.老版本的JRTPLIB沒有使用這套函數(shù),而是用EnableSendName()等函數(shù)。

      • void SetEMailInterval(int count)
      After all possible sources in the source table have been processed, the RTCP
packet builder will check if other (non-CNAME) SDES items need to be
sent. If count is zero or negative, nothing will happen. If count is positive,
an SDES e-mail item will be added after the sources in the source table
have been processed count times.

      • void SetLocationInterval(int count)
      After all possible sources in the source table have been processed, the RTCP
packet builder will check if other (non-CNAME) SDES items need to be
sent. If count is zero or negative, nothing will happen. If count is positive,
an SDES location item will be added after the sources in the source table
have been processed count times.

      • void SetPhoneInterval(int count)
      After all possible sources in the source table have been processed, the RTCP
packet builder will check if other (non-CNAME) SDES items need to be
sent. If count is zero or negative, nothing will happen. If count is positive,
an SDES phone item will be added after the sources in the source table
have been processed count times.

      • void SetToolInterval(int count)
      After all possible sources in the source table have been processed, the RTCP
packet builder will check if other (non-CNAME) SDES items need to be
sent. If count is zero or negative, nothing will happen. If count is positive,
an SDES tool item will be added after the sources in the source table have
been processed count times.

      • void SetNoteInterval(int count)
      After all possible sources in the source table have been processed, the RTCP
packet builder will check if other (non-CNAME) SDES items need to be
sent. If count is zero or negative, nothing will happen. If count is positive,
an SDES note item will be added after the sources in the source table have
been processed count times.

      • int SetLocalName(const void *s, size t len)
      設(shè)置NAME SDES項目,以遍會議的其它人員看到你的名稱。下同。
     
      • int SetLocalEMail(const void *s, size t len)
      Sets the SDES e-mail item for the local participant to the value s with
length len.

      • int SetLocalLocation(const void *s, size t len)
Sets the SDES location item for the local participant to the value s with
length len.

      • int SetLocalPhone(const void *s, size t len)
      Sets the SDES phone item for the local participant to the value s with
length len.

      • int SetLocalTool(const void *s, size t len)
      Sets the SDES tool item for the local participant to the value s with length
len.
      
      • int SetLocalNote(const void *s, size t len)
Sets the SDES note item for the local participant to the value s with length
len.
In case you specified in the constructor that you want to use your own transmission
component, you should override the following function:
      • RTPTransmitter *NewUserDefinedTransmitter()
      The RTPTransmitter instance returned by this function will then be used to send
and receive RTP and RTCP packets. Note that when the session is destroyed,
this RTPTransmitter instance will be destroyed with a delete call.
By inheriting your own class from RTPSession and overriding one or more of the
functions below, certain events can be detected:

      • void OnRTPPacket(RTPPacket *pack, const RTPTime &receivetime, const  RTPAddress *senderaddress)
      如果有RTPPacket數(shù)據(jù)包來到,會調(diào)用這個函數(shù)處理。ps:這個函數(shù)在我們繼承RTPSession類時很可能重載,這是獲取RTP數(shù)據(jù)包除了上面所說的方法以外的另外一種方法,這個方法比較適合異步的情況。默認(rèn)這個是一個空虛函數(shù)。除了這個函數(shù)以外,下面的幾個函數(shù)了會經(jīng)常重載。

      • void OnRTCPCompoundPacket(RTCPCompoundPacket *pack, const RTPTime &receivetime, const RTPAddress *senderaddress)
      Is called when an incoming RTCP packet is about to be processed.

      • void OnSSRCCollision(RTPSourceData *srcdat, const RTPAddress *senderaddress, bool isrtp)
      Is called when an SSRC collision was detected. The instance srcdat is the
one present in the table, the address senderaddress is the one that collided
with one of the addresses and isrtp indicates against which address
of srcdat the check failed.
      
      • void OnCNAMECollision(RTPSourceData *srcdat, const RTPAddress *senderaddress, const uint8 t *cname, size t cnamelength)
      Is called when another CNAME was received than the one already present for source srcdat.

      • void OnNewSource(RTPSourceData *srcdat)
      當(dāng)有一個新的條目加到source table時,調(diào)用這個函數(shù)。ps: 這也是一個比較重要的函數(shù),因為這意味著很有可能有一個新的與會者加入。但令我很不高興的是,這時候的RTPSourceData 里頭的CNAME和NAME等字段都還是無效的,這不是RTCP的責(zé)任,因為在這個SDES RTCP數(shù)據(jù)包中所有的信息都以經(jīng)有了(通過抓包證實了這一點(diǎn))。我們的函數(shù)被調(diào)用后,需要延時一會才能得到有關(guān)這個Source的CNAME和NAME 等相關(guān)的信息。當(dāng)然,如果你不想軟件死掉,不能在這個函數(shù)體內(nèi)以阻塞的方式延時。

      • void OnRemoveSource(RTPSourceData *srcdat)
      當(dāng)有一個條目從source table中移除時調(diào)用這個函數(shù)。ps:這通常意味著有一個與會者離開了,和OnNewSource不一樣,這時的CNAME和NAME等都是有效的。用這個函數(shù)要注意,我們的“意味著兩個字” 因為“加入”的可能不是一個新的與會者,而是一個現(xiàn)有與會者的一個新的媒體流。“離開”的也可能不是一個與會者,而只是其中一個與會者的其中一個媒體流,這兩個函數(shù)只能給我們更新與會者提供一個觸發(fā)條件而已。當(dāng)OnNewSource調(diào)用時,我們要看看這個CNAME是不是以經(jīng)在我們與會者名單中,如果不是,那就是一個新與會者。同時,如果OnRemoveSource被調(diào)用,則我們要看看這個CNAME的與會者還有沒有其它的Source,如果沒有了,這個與會者才是真正離開。這么很麻煩??那就對了,那就是現(xiàn)在的H323和SIP要做的事情--會話管理。
     
      • void OnTimeout(RTPSourceData *srcdat)
      Is called when participant srcdat is timed out.

      • void OnBYETimeout(RTPSourceData *srcdat)
      Is called when participant srcdat is timed after having sent a BYE packet.

      • void OnBYEPacket(RTPSourceData *srcdat)
      Is called when a BYE packet has been processed for source srcdat.

      • void OnAPPPacket(RTCPAPPPacket *apppacket, const RTPTime &receivetime,
const RTPAddress *senderaddress)
      In called when an RTCP APP packet apppacket has been received at time
receivetime from address senderaddress.

      • void OnUnknownPacketType(RTCPPacket *rtcppack, const RTPTime &receivetime,
const RTPAddress *senderaddress)
      Is called when an unknown RTCP packet type was detected.

      • void OnUnknownPacketFormat(RTCPPacket *rtcppack, const RTPTime &receivetime,
const RTPAddress *senderaddress)
      Is called when an unknown packet format for a known packet type was
detected.

      • void OnNoteTimeout(RTPSourceData *srcdat)
      Is called when the SDES NOTE item for source srcdat has been timed out.

      • void OnSendRTCPCompoundPacket(RTCPCompoundPacket *pack)
      Is called when an RTCP compound packet has just been sent. Useful to
inspect outgoing RTCP data.

      • void OnPollThreadError(int errcode)
      Is called when error errcode was detected in the poll thread.

      • void OnPollThreadStep()
      Is called each time the poll thread loops. This happens when incoming data
was detected or when its time to send an RTCP compound packet.

發(fā)送者報告(SR)

V| P| RC| PT=SR=200| LEN|


發(fā)送者SSRC (已關(guān)聯(lián))


NTP時間戳(高32位) SR_GetNTPTimestamp ()

 

NTP時間戳(低32位)


RTP時間戳 SR_GetRTPTimestamp () 

 


發(fā)送者分組計數(shù)器 SR_GetPacketCount()

 


發(fā)送者字節(jié)計數(shù)器 SR_GetByteCount ()

 


...(下面是這個發(fā)送者所發(fā)送的接收者報告,在下面和RR一起討論)

 


附加信息:

這個源是否有發(fā)送發(fā)送者報告

SR_HasInfo ()

這個發(fā)送者報告接收的時間

SR_GetReceiveTime ()

以及以SR_Prev_開頭的,獲得倒數(shù)第二個發(fā)送者報告的信息。



接收者報告(RR)

V| P| RC| PT=SR=201| LEN|


 

SSRC1(第一個接收者報告塊所關(guān)聯(lián)的發(fā)送者) (已關(guān)聯(lián))

分組丟失率 | 丟失分組總數(shù)|

擴(kuò)展的最高序號

間隔抖動

最新的發(fā)送者報告時間戳(LSR)

SR最新間隔(DLSR)

附加信息:
這個源是否有發(fā)送接收者報告
接收者報告接收時間
以及以RR_Prev_開頭的,獲得倒數(shù)第二個接收者報告的信息。
posted on 2009-06-26 13:13 黑色天使 閱讀(1764) 評論(0)  編輯 收藏 引用

只有注冊用戶登錄后才能發(fā)表評論。
網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理



<2009年6月>
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011

常用鏈接

留言簿(2)

隨筆分類

隨筆檔案

文章檔案

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            久久一区二区三区国产精品 | 老牛国产精品一区的观看方式| 欧美成年人网站| 99视频精品| 日韩一级欧洲| 亚洲激情自拍| 午夜影院日韩| 亚洲色图制服丝袜| 亚洲作爱视频| 亚洲欧美日韩国产一区二区| 日韩亚洲欧美在线观看| 一本色道久久88综合日韩精品 | 亚洲欧美日韩精品久久| 亚洲淫性视频| 浪潮色综合久久天堂| 亚洲第一综合天堂另类专| 亚洲国产综合91精品麻豆| 亚洲福利小视频| 香港成人在线视频| 蜜桃久久av一区| 国产精品成人播放| 国产一区二区三区自拍| 亚洲国产综合在线| 欧美一区免费视频| 亚洲欧美日韩中文视频| 久久久777| 欧美一区二区三区精品| 亚洲二区在线视频| 午夜精品美女久久久久av福利| 亚洲一区免费看| 精品成人在线视频| 亚洲一区二区免费看| 鲁鲁狠狠狠7777一区二区| 欧美日韩免费视频| 亚洲国产精品第一区二区| 亚洲综合色自拍一区| 欧美成人性网| 一本色道久久88精品综合| 性娇小13――14欧美| 久久福利影视| 欧美黄色aaaa| 久久久亚洲成人| 欧美少妇一区二区| 99www免费人成精品| 久久免费偷拍视频| 久久精品亚洲国产奇米99| 国产日韩专区| 久久精品一区二区国产| 噜噜噜在线观看免费视频日韩| 欧美性天天影院| 欧美激情在线播放| 欧美大香线蕉线伊人久久国产精品| 亚洲区一区二区三区| 国产精品第2页| 久久精品夜色噜噜亚洲aⅴ| 久久精品1区| 亚洲欧美日韩在线综合| 欧美在线首页| 在线性视频日韩欧美| 欧美在线综合| 99国产麻豆精品| 久久精品国产999大香线蕉| 亚洲小说欧美另类社区| 久久在线免费| 久久精品日产第一区二区| 欧美日韩国产精品专区| 亚洲娇小video精品| 激情久久五月| 欧美综合二区| 欧美伊人久久大香线蕉综合69| 欧美成人在线网站| 久久亚裔精品欧美| 狠狠操狠狠色综合网| 国产精品99久久99久久久二8| 国产麻豆精品theporn| 亚洲视频在线一区| 国产亚洲欧美一区| 欧美极品在线视频| 西瓜成人精品人成网站| 亚洲二区在线视频| 欧美在线三级| 99re66热这里只有精品3直播| 国产精品一区二区视频| 老鸭窝亚洲一区二区三区| 亚洲午夜激情| 久久综合九色欧美综合狠狠| 亚洲第一黄色网| 欧美日韩国内| 久久精品视频免费| 亚洲国产一区二区精品专区| 亚洲精品裸体| 国产欧美一级| 欧美日韩成人一区二区| 亚洲永久字幕| 亚洲精品免费看| 久久久久久有精品国产| 99re亚洲国产精品| 在线精品视频一区二区| 欧美丝袜第一区| 欧美多人爱爱视频网站| 午夜影院日韩| 午夜精品999| 在线午夜精品| av不卡在线看| 亚洲国产精品一区二区第四页av| 久久久天天操| 久久精品国产第一区二区三区| 一区二区日韩| 夜夜嗨一区二区三区| 亚洲人线精品午夜| 在线免费观看视频一区| 一区二区三区在线观看国产| 国产精品一区在线观看| 欧美一区二区免费| 亚洲图片欧美日产| 99精品99| 一区二区欧美在线| 亚洲制服丝袜在线| 亚洲欧美日韩精品在线| 久久riav二区三区| 久久色在线播放| 欧美成人午夜免费视在线看片| 欧美mv日韩mv国产网站| 亚洲国产日韩欧美一区二区三区| 亚洲国产精品电影| 99v久久综合狠狠综合久久| 99国产精品| 久久久国际精品| 欧美福利一区二区三区| 国产精品盗摄久久久| 红桃av永久久久| 一本大道久久a久久综合婷婷| 亚洲综合精品一区二区| 女女同性精品视频| 一区二区三区久久网| 欧美亚洲一区二区在线观看| 欧美成人精品激情在线观看| 欧美性开放视频| 亚洲黄色av| 麻豆国产精品777777在线| 亚洲三级视频在线观看| 久久综合电影| 极品av少妇一区二区| 亚洲一区二区在线播放| 亚洲第一成人在线| 久久人91精品久久久久久不卡| 国产精品极品美女粉嫩高清在线 | 亚洲三级视频| 久久亚洲电影| 国产亚洲精久久久久久| 亚洲综合精品自拍| 亚洲私人影院在线观看| 最新国产成人av网站网址麻豆| 久久精品国产欧美亚洲人人爽| 国产精品自拍在线| 午夜亚洲一区| 亚洲综合999| 国内成+人亚洲| 免费人成精品欧美精品| 另类天堂av| 亚洲视频中文字幕| 亚洲欧美日韩高清| 一区二区三区在线免费播放| 欧美刺激午夜性久久久久久久| 久久五月天婷婷| 日韩特黄影片| 新67194成人永久网站| 狠狠入ady亚洲精品经典电影| 欧美大片在线观看一区二区| 欧美va亚洲va日韩∨a综合色| 日韩一级裸体免费视频| 性亚洲最疯狂xxxx高清| 亚洲国产成人久久综合| 亚洲精品乱码久久久久久久久| 国产精品国产三级国产专区53| 久久裸体艺术| 国产精品成人一区二区| 噜噜噜久久亚洲精品国产品小说| 欧美国产成人在线| 久久国产婷婷国产香蕉| 欧美三级乱码| 欧美好吊妞视频| 激情成人中文字幕| 午夜视频在线观看一区| 99精品欧美一区二区三区| 久久亚洲综合色| 免费视频一区| 伊人春色精品| 久久久久国产精品一区二区| 一区二区三区久久| 午夜精品久久久久久久99水蜜桃| 亚洲精品免费观看| 亚洲激情综合| 欧美电影免费观看高清完整版| 久久久久91| 一区二区三区在线观看视频| 久久久国产精彩视频美女艺术照福利| 亚洲免费人成在线视频观看| 欧美日韩大片| 亚洲国产精品福利|