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

天行健 君子當(dāng)自強而不息

用DirectX Audio和DirectShow播放聲音和音樂(2)


本篇是用DirectX Audio和DirectShow播放聲音和音樂(1)的續(xù)篇。


開始使用主音頻緩存

讓緩存在程序啟動的時候開始播放可以節(jié)省不少處理器時間。因為內(nèi)存資源是有限的,特別是在硬件設(shè)備中,而你使用的數(shù)據(jù)緩存可能需要任意大小,因此主音頻緩沖區(qū)和輔助緩沖區(qū)使用環(huán)形緩存。

環(huán)形緩沖的示意圖如下:

因為數(shù)據(jù)緩沖是一個一維數(shù)組,所以可以讓這個緩沖區(qū)頭尾相接。這是一個十分強大的技術(shù),利用這個技術(shù)我們可以節(jié)省大量的內(nèi)存。

聲音在進行混音處理后,被送入環(huán)形主音頻緩存。一旦播放位置到達主音頻緩存的終點,聲音又從頭開始播放,這樣聲音就被無間隙地連續(xù)播放。如果想要使用緩存的這種循環(huán)特性,需要指定啟用循環(huán)播放的特性,若不然當(dāng)播放到緩沖區(qū)終點時,播放就停止了。

為了播放緩存中的音頻數(shù)據(jù)(在開啟循環(huán)選項的情況下播放),需要調(diào)用Play函數(shù)。

The Play method causes the sound buffer to play, starting at the play cursor.
HRESULT Play(
DWORD dwReserved1,
DWORD dwPriority,
DWORD dwFlags
);

Parameters

dwReserved1
Reserved. Must be 0.
dwPriority
Priority for the sound, used by the voice manager when assigning hardware mixing resources. The lowest priority is 0, and the highest priority is 0xFFFFFFFF. If the buffer was not created with the DSBCAPS_LOCDEFER flag, this value must be 0.
dwFlags
Flags specifying how to play the buffer. The following flags are defined:

Looping flag

Value Description
DSBPLAY_LOOPING After the end of the audio buffer is reached, play restarts at the beginning of the buffer. Play continues until explicitly stopped. This flag must be set when playing a primary buffer.

Voice allocation flags

The voice allocation flags are valid only for buffers created with the DSBCAPS_LOCDEFER flag. One of the following flags can be used to force the processing of the sound into hardware or software. If neither DBSPLAY_LOCHARDWARE nor DBSPLAY_LOCSOFTWARE is set, the sound is played in either software or hardware, depending on the availability of resources at the time the method is called. See Remarks.

 
Value Description
DSBPLAY_LOCHARDWARE Play this voice in a hardware buffer only. If the hardware has no available voices and no voice management flags are set, the call to IDirectSoundBuffer8::Play fails. This flag cannot be combined with DSBPLAY_LOCSOFTWARE.
DSBPLAY_LOCSOFTWARE Play this voice in a software buffer only. This flag cannot be combined with DSBPLAY_LOCHARDWARE or any voice management flag.

Voice management flags

The voice management flags are valid only for buffers created with the DSBCAPS_LOCDEFER flag, and are used for sounds that are to play in hardware. These flags enable hardware resources that are already in use to be yielded to the current sound. Only buffers created with the DSBCAPS_LOCDEFER flag are candidates for premature termination. See Remarks.

 

Value Description
DSBPLAY_TERMINATEBY_TIME If the hardware has no available voices, a currently playing nonlooping buffer will be stopped to make room for the new buffer. The buffer prematurely terminated is the one with the least time left to play.
DSBPLAY_TERMINATEBY_DISTANCE If the hardware has no available voices, a currently playing buffer will be stopped to make room for the new buffer. The buffer prematurely terminated will be selected from buffers that have the buffer's DSBCAPS_ MUTE3DATMAXDISTANCE flag set and are beyond their maximum distance. If there are no such buffers, the method fails.
DSBPLAY_TERMINATEBY_PRIORITY If the hardware has no available voices, a currently playing buffer will be stopped to make room for the new buffer. The buffer prematurely terminated will be the one with the lowest priority as set by the dwPriority parameter passed to IDirectSoundBuffer8::Play for the buffer.
 

Return Values

If the method succeeds, the return value is DS_OK. If the method fails, the return value may be one of the following error values:

Return code
DSERR_BUFFERLOST
DSERR_INVALIDCALL
DSERR_INVALIDPARAM
DSERR_PRIOLEVELNEEDED

當(dāng)完成主音頻緩存設(shè)置后(以及整個音響系統(tǒng)),如果想停止它,需要調(diào)用IDirectSoundBuffer::Stop。

The Stop method causes the sound buffer to stop playing.

HRESULT Stop();

Parameters

None.

Return Values

If the method succeeds, the return value is DS_OK. If the method fails, the return value may be one of the following error values:

Remarks

For secondary sound buffers, IDirectSoundBuffer8::Stop sets the play cursor to the sample that follows the last sample played. This means that when the Play method is next called on the buffer, it will continue playing where it left off.

For the primary buffer, if an application has the DSSCL_WRITEPRIMARY level, this method will stop the buffer and reset the play cursor to 0 (the beginning of the buffer). This is necessary because the primary buffers on most sound cards can play only from the beginning of the buffer.

However, if IDirectSoundBuffer8::Stop is called on a primary buffer and the application has a cooperative level other than DSSCL_WRITEPRIMARY, this method simply reverses the effects of IDirectSoundBuffer8::Play. It configures the primary buffer to stop if no secondary buffers are playing. If other buffers are playing in this or other applications, the primary buffer will not actually stop until they are stopped. This method is useful because playing the primary buffer consumes processing overhead even if the buffer is playing sound data with the amplitude of 0 decibels.


使用輔助音頻緩存

想要使用輔助音頻緩存的數(shù)據(jù),需要將輔助音頻緩存中包含的數(shù)據(jù)填充到主音頻緩存,如下圖所示:

如果在主音頻緩存的同一區(qū)域?qū)懭雰啥我纛l數(shù)據(jù),這兩段聲音就會被同時播放。輔助音頻緩存使用 IDirectSoundBuffer8接口,這個接口和IDirectSoundBuffer十分類似,實際上如果想要創(chuàng)建 IDirectSoundBuffer8接口,必須先創(chuàng)建IDirectSoundBuffer接口,然后通過請求新接口來獲取 IDirectSoundBuffer8接口。

創(chuàng)建輔助音頻緩存和創(chuàng)建主音頻緩存時主要的不同是必須在初始化時設(shè)置回放格式,這意味著緩沖區(qū)只能使用一種格式。如果希望使用另外的格式,必須釋放當(dāng)前的緩存,重新創(chuàng)建另外一個。

代碼示例:

     // initialize and configure directsound

    // creates and initializes an object that supports the IDirectSound8 interface
    if(FAILED(DirectSoundCreate8(NULL, &g_ds, NULL)))
    {
        MessageBox(NULL, "Unable to create DirectSound object", "Error", MB_OK);
        
return 0;
    }

    
// set the cooperative level of the application for this sound device
    g_ds->SetCooperativeLevel(g_hwnd, DSSCL_NORMAL);

    
// create a sound buffer

    // setup the WAVEFORMATEX structure
    WAVEFORMATEX wave_format;

    ZeroMemory(&wave_format, 
sizeof(WAVEFORMATEX));

    wave_format.wFormatTag      = WAVE_FORMAT_PCM;
    wave_format.nChannels       = 1;        
// mono
    wave_format.nSamplesPerSec  = 11025;    
    wave_format.wBitsPerSample  = 16;
    wave_format.nBlockAlign     = (wave_format.wBitsPerSample / 8) * wave_format.nChannels;
    wave_format.nAvgBytesPerSec = wave_format.nSamplesPerSec * wave_format.nBlockAlign;

    
// setup the DSBUFFERDESC structure
    DSBUFFERDESC ds_buffer_desc;

    
// zero out strcutre
    ZeroMemory(&ds_buffer_desc, sizeof(DSBUFFERDESC));

    ds_buffer_desc.dwSize        = 
sizeof(DSBUFFERDESC); 
    ds_buffer_desc.dwFlags       = DSBCAPS_CTRLVOLUME;
    ds_buffer_desc.dwBufferBytes = wave_format.nAvgBytesPerSec * 2;  
// 2 seconds
    ds_buffer_desc.lpwfxFormat   = &wave_format;

    
// create the fist version object
    if(FAILED(g_ds->CreateSoundBuffer(&ds_buffer_desc, &ds, NULL)))
    {
        
// error ocuurred
        MessageBox(NULL, "Unable to create sound buffer", "Error", MB_OK);
    }
    
else
    {
        
// get the version 8 interface
        ds->QueryInterface(IID_IDirectSoundBuffer8, (void**)&g_ds_buffer);

        
// release the original interface
        ds->Release();
}

 

鎖定和加載 --- 在緩沖區(qū)中加載數(shù)據(jù)

緩存接口有一對處理數(shù)據(jù)加載的函數(shù)。 IDirectSoundBuffer8::Lock函數(shù)鎖定音頻緩沖數(shù)據(jù),并且找回指向緩沖區(qū)數(shù)據(jù)的數(shù)據(jù)指針; IDirectSoundBuffer8::Unlock釋放在鎖定操作中使用的資源。

當(dāng)鎖定緩存以后,就能對緩沖區(qū)進行寫入操作。先告訴緩沖寫入偏移量的字節(jié)數(shù)、寫入位置、要寫入數(shù)據(jù)的字節(jié)數(shù),寫入完成后返回兩個指向數(shù)據(jù)的指針以及寫入數(shù)據(jù)的字節(jié)數(shù)。為什么會有兩個指針和兩個數(shù)據(jù)大小呢?因為音頻數(shù)據(jù)緩沖區(qū)是環(huán)形的,寫入的數(shù)據(jù)也需要跨過起始位置。返回的第一個指針是請求的位置,第一個值是從請求的位置到結(jié)束所寫入的字節(jié)數(shù),第二個指針通常是緩存區(qū)的起始位置,第二個值是從起點開始寫入的字節(jié)數(shù)。

這里有一個長度是 65536字節(jié)大小的緩沖區(qū),這個緩沖區(qū)被鎖定,以便于寫入62000字節(jié)的數(shù)據(jù)。第一個指針處寫入了60000字節(jié),第二個指針處還剩下2000字節(jié),如下圖所示:



Lock函數(shù)使用信息如下:

The Lock method readies all or part of the buffer for a data write and returns pointers to which data can be written.

HRESULT Lock(
DWORD dwOffset,
DWORD dwBytes,
LPVOID * ppvAudioPtr1,
LPDWORD pdwAudioBytes1,
LPVOID * ppvAudioPtr2,
LPDWORD pdwAudioBytes2,
DWORD dwFlags
);

Parameters

dwOffset
Offset, in bytes, from the start of the buffer to the point where the lock begins. This parameter is ignored if DSBLOCK_FROMWRITECURSOR is specified in the dwFlags parameter.
dwBytes
Size, in bytes, of the portion of the buffer to lock. The buffer is conceptually circular, so this number can exceed the number of bytes between dwOffset and the end of the buffer.
ppvAudioPtr1
Address of a variable that receives a pointer to the first locked part of the buffer.
pdwAudioBytes1
Address of a variable that receives the number of bytes in the block at ppvAudioPtr1. If this value is less than dwBytes, the lock has wrapped and ppvAudioPtr2 points to a second block of data at the beginning of the buffer .
ppvAudioPtr2
Address of a variable that receives a pointer to the second locked part of the capture buffer. If NULL is returned, the ppvAudioPtr1 parameter points to the entire locked portion of the capture buffer.
pdwAudioBytes2
Address of a variable that receives the number of bytes in the block at ppvAudioPtr2. If ppvAudioPtr2 is NULL, this value is zero.
dwFlags
Flags modifying the lock event. The following flags are defined:

 

Value Description
DSBLOCK_FROMWRITECURSOR Start the lock at the write cursor. The dwOffset parameter is ignored.
DSBLOCK_ENTIREBUFFER Lock the entire buffer. The dwBytes parameter is ignored.
 

Return Values

If the method succeeds, the return value is DS_OK. If the method fails, the return value may be one of the following error values:

Return code
DSERR_BUFFERLOST
DSERR_INVALIDCALL
DSERR_INVALIDPARAM
DSERR_PRIOLEVELNEEDED

Remarks

This method accepts an offset and a byte count, and returns two write pointers and their associated sizes. If the locked portion does not extend to the end of the buffer and wrap to the beginning, the second pointer, ppvAudioBytes2, receives NULL. If the lock does wrap, ppvAudioBytes2 points to the beginning of the buffer.

If the application passes NULL for the ppvAudioPtr2 and pdwAudioBytes2 parameters, the lock extends no further than the end of the buffer and does not wrap.

After writing data to the pointers returned by this method, the application must immediately call Unlock to notify DirectSound that the data is ready for playback. Failure to do so can cause audio breakup or silence on some sound device configurations.

This method returns write pointers only. The application should not try to read sound data from this pointer, because the data might not be valid. For example, if the buffer is located in on-card memory, the pointer might be an address to a temporary buffer in system memory. When IDirectSoundBuffer8::Unlock is called, the contents of this temporary buffer are transferred to the on-card memory.


以下這段代碼鎖定輔助音頻緩沖區(qū),并且填充隨機數(shù)據(jù)。
 
       // lock buffer, fill with random values, and unlock.

        
char* ptr;
        DWORD size;

        
// readies all or part of the buffer for a data write and returns pointers to which data can be written
        if(SUCCEEDED(g_ds_buffer->Lock(0, 0, (void**)&ptr, &size, NULL, 0, DSBLOCK_ENTIREBUFFER)))
        {
            
for(DWORD i = 0; i < size; i++)
                ptr[i] = rand() % 256;
        }

填充完數(shù)據(jù)后,應(yīng)該給緩沖區(qū)解鎖,調(diào)用IDirectSoundBuffer8::Unlock解鎖。

The Unlock method releases a locked sound buffer.

HRESULT Unlock(
LPVOID pvAudioPtr1,
DWORD dwAudioBytes1,
LPVOID pvAudioPtr2,
DWORD dwAudioBytes2
);

Parameters

pvAudioPtr1
Address of the value retrieved in the ppvAudioPtr1 parameter of the Lock method.
dwAudioBytes1
Number of bytes written to the portion of the buffer at pvAudioPtr1. See Remarks.
pvAudioPtr2
Address of the value retrieved in the ppvAudioPtr2 parameter of the IDirectSoundBuffer8::Lock method.
dwAudioBytes2
Number of bytes written to the portion of the buffer at pvAudioPtr2. See Remarks.

Return Values

If the method succeeds, the return value is DS_OK. If the method fails, the return value may be one of the following error values:

Return code
DSERR_INVALIDCALL
DSERR_INVALIDPARAM
DSERR_PRIOLEVELNEEDED

Remarks

An application must pass both pointers, pvAudioPtr1 and pvAudioPtr2, returned by the IDirectSoundBuffer8::Lock method to ensure the correct pairing of IDirectSoundBuffer8::Lock and IDirectSoundBuffer8::Unlock. The second pointer is needed even if nothing was written to the second pointer.

The values in dwAudioBytes1 and dwAudioBytes2 must specify the number of bytes actually written to each part of the buffer, which might be less than the size of the lock. DirectSound uses these values to determine how much data to commit to the device.

以下代碼解鎖剛才鎖定的輔助音頻緩沖區(qū):

// releases a locked sound buffer
g_ds_buffer->Unlock(ptr, size, NULL, 0);

播放緩沖區(qū)中的聲音

在輔助音頻緩沖區(qū)中播放音頻和在主音頻緩沖區(qū)中播放是一樣的,惟一不同的是這次需要設(shè)置播放的起始位置,通過IDirectSoundBuffer8:: SetCurrentPosition來設(shè)置。一般情況下,會選擇從緩沖的開頭播放,需要注意的是,停止播放一段音頻并不會重置播放位置,所以可以通過停止播放來達到暫停的目的,只需要再次調(diào)用播放函數(shù)來恢復(fù)播放。

The SetCurrentPosition method sets the position of the play cursor, which is the point at which the next byte of data is read from the buffer.

HRESULT SetCurrentPosition(
DWORD dwNewPosition
);

Parameters

dwNewPosition
Offset of the play cursor, in bytes, from the beginning of the buffer.

Return Values

If the method succeeds, the return value is DS_OK. If the method fails, the return value may be one of the following error values:

Return code
DSERR_INVALIDCALL
DSERR_INVALIDPARAM
DSERR_PRIOLEVELNEEDED

Remarks

This method cannot be called on the primary buffer.

If the buffer is playing, the cursor immediately moves to the new position and play continues from that point. If it is not playing, playback will begin from the new position the next time the Play method is called.


改變音量

DirectSound 在播放聲音時按照采樣時的最大音量播放,加之受限于音頻硬件,所以沒有辦法讓音量變得更大,DirectSound只能讓音量變得更小些。這是通過減小聲音級別來完成的,這個級別的單位是百分之一分貝。范圍從0(最大音量)-- 10000(無聲),利用這個特性可以在程序中加入“淡入”或“淡出“的效果。

要調(diào)整音量,可以使用 IDirectSoundBuffer8::SetVolume函數(shù)。

The SetVolume method sets the attenuation of the sound.

HRESULT SetVolume(
LONG lVolume
);

Parameters

lVolume
Attenuation, in hundredths of a decibel (dB).

Return Values

If the method succeeds, the return value is DS_OK. If the method fails, the return value may be one of the following error values:

Return code
DSERR_CONTROLUNAVAIL
DSERR_GENERIC
DSERR_INVALIDPARAM
DSERR_PRIOLEVELNEEDED

Remarks

Allowable values are between DSBVOLUME_MAX (no attenuation) and DSBVOLUME_MIN (silence). These values are defined in Dsound.h as 0 and ?10,000 respectively. The value DSBVOLUME_MAX represents the original, unadjusted volume of the stream. The value DSBVOLUME_MIN indicates an audio volume attenuated by 100 dB, which, for all practical purposes, is silence. DirectSound does not support amplification.


以下給出一個完整示例來運用剛才學(xué)到的知識。

點擊下載源碼和工程

源碼示例:
 
/***************************************************************************************
PURPOSE:
    Lock Load Playing Demo
 ***************************************************************************************/


#define DIRECTINPUT_VERSION 0x0800

#include <windows.h>
#include <stdio.h>
#include <dsound.h>
#include "resource.h"

#pragma comment(lib, "dxguid.lib")
#pragma comment(lib, "dsound.lib")

#pragma warning(disable : 4996)

#define Safe_Release(p) if((p)) (p)->Release();

// window handles, class and caption text.
HWND g_hwnd;
char g_class_name[] = "LockLoadClass";

IDirectSound8*          g_ds;           
// directsound component
IDirectSoundBuffer8*    g_ds_buffer;    // sound buffer object

//--------------------------------------------------------------------------------
// Window procedure.
//--------------------------------------------------------------------------------
long WINAPI Window_Proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
    
switch(msg)
    {
    
case WM_DESTROY:
        PostQuitMessage(0);
        
return 0;
    }

    
return (long) DefWindowProc(hwnd, msg, wParam, lParam);
}

//--------------------------------------------------------------------------------
// Main function, routine entry.
//--------------------------------------------------------------------------------
int WINAPI WinMain(HINSTANCE inst, HINSTANCE, LPSTR cmd_line, int cmd_show)
{
    WNDCLASS            win_class;
    MSG                 msg;
    IDirectSoundBuffer* ds = NULL;

    
// create window class and register it
    win_class.style         = CS_HREDRAW | CS_VREDRAW;
    win_class.lpfnWndProc   = Window_Proc;
    win_class.cbClsExtra    = 0;
    win_class.cbWndExtra    = DLGWINDOWEXTRA;
    win_class.hInstance     = inst;
    win_class.hIcon         = LoadIcon(inst, IDI_APPLICATION);
    win_class.hCursor       = LoadCursor(NULL, IDC_ARROW);
    win_class.hbrBackground = (HBRUSH) (COLOR_BTNFACE + 1);
    win_class.lpszMenuName  = NULL;
    win_class.lpszClassName = g_class_name;    

    
if(! RegisterClass(&win_class))
        
return FALSE;

    
// create the main window
    g_hwnd = CreateDialog(inst, MAKEINTRESOURCE(IDD_LOCKLOAD), 0, NULL);

    ShowWindow(g_hwnd, cmd_show);
    UpdateWindow(g_hwnd);

    
// initialize and configure directsound

    // creates and initializes an object that supports the IDirectSound8 interface
    if(FAILED(DirectSoundCreate8(NULL, &g_ds, NULL)))
    {
        MessageBox(NULL, "Unable to create DirectSound object", "Error", MB_OK);
        
return 0;
    }

    
// set the cooperative level of the application for this sound device
    g_ds->SetCooperativeLevel(g_hwnd, DSSCL_NORMAL);

    
// create a sound buffer

    // setup the WAVEFORMATEX structure
    WAVEFORMATEX wave_format;

    ZeroMemory(&wave_format, 
sizeof(WAVEFORMATEX));

    wave_format.wFormatTag      = WAVE_FORMAT_PCM;
    wave_format.nChannels       = 1;        
// mono
    wave_format.nSamplesPerSec  = 11025;    
    wave_format.wBitsPerSample  = 16;
    wave_format.nBlockAlign     = (wave_format.wBitsPerSample / 8) * wave_format.nChannels;
    wave_format.nAvgBytesPerSec = wave_format.nSamplesPerSec * wave_format.nBlockAlign;

    
// setup the DSBUFFERDESC structure
    DSBUFFERDESC ds_buffer_desc;

    
// zero out strcutre
    ZeroMemory(&ds_buffer_desc, sizeof(DSBUFFERDESC));

    ds_buffer_desc.dwSize        = 
sizeof(DSBUFFERDESC); 
    ds_buffer_desc.dwFlags       = DSBCAPS_CTRLVOLUME;
    ds_buffer_desc.dwBufferBytes = wave_format.nAvgBytesPerSec * 2;  
// 2 seconds
    ds_buffer_desc.lpwfxFormat   = &wave_format;

    
// create the fist version object
    if(FAILED(g_ds->CreateSoundBuffer(&ds_buffer_desc, &ds, NULL)))
    {
        
// error ocuurred
        MessageBox(NULL, "Unable to create sound buffer", "Error", MB_OK);
    }
    
else
    {
        
// get the version 8 interface
        ds->QueryInterface(IID_IDirectSoundBuffer8, (void**)&g_ds_buffer);

        
// release the original interface
        ds->Release();

        
// lock buffer, fill with random values, and unlock.

        
char* ptr;
        DWORD size;

        
// readies all or part of the buffer for a data write and returns pointers to which data can be written
        if(SUCCEEDED(g_ds_buffer->Lock(0, 0, (void**)&ptr, &size, NULL, 0, DSBLOCK_ENTIREBUFFER)))
        {
            
for(DWORD i = 0; i < size; i++)
                ptr[i] = rand() % 256;
        }

        
// releases a locked sound buffer
        g_ds_buffer->Unlock(ptr, size, NULL, 0);

        
// play sound looping

        // sets the position of the play cursor, 
        // which is the point at which the next byte of data is read from the buffer.
        g_ds_buffer->SetCurrentPosition(0);

        
// set the attenuation of the sound
        g_ds_buffer->SetVolume(DSBVOLUME_MAX);

        
// causes the sound buffer to play, starting at the play cursor.
        g_ds_buffer->Play(0, 0, DSBPLAY_LOOPING);
    }

    
// start message pump, waiting for signal to quit.
    ZeroMemory(&msg, sizeof(MSG));

    
while(msg.message != WM_QUIT)
    {
        
if(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
        {
            TranslateMessage(&msg);
            DispatchMessage(&msg);
        }        
    }

    
// release directsound objects
    g_ds->Release();

    UnregisterClass(g_class_name, inst);
    
    
return (int) msg.wParam;
}
 

運行截圖:



閱讀下篇:用DirectX Audio和DirectShow播放聲音和音樂(3)

posted on 2007-07-26 20:00 lovedday 閱讀(4182) 評論(0)  編輯 收藏 引用


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


公告

導(dǎo)航

統(tǒng)計

常用鏈接

隨筆分類(178)

3D游戲編程相關(guān)鏈接

搜索

最新評論

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            国产精品v片在线观看不卡| 久久综合九色九九| 国产日韩欧美精品一区| 国产精品老牛| 国产日韩精品视频一区| 国产性天天综合网| 精品av久久707| 亚洲日本一区二区| 欧美激情小视频| 久久高清国产| 久久国产精品一区二区| 久久一区免费| 欧美日韩成人在线| 国产美女高潮久久白浆| 精品999成人| 一本色道久久88精品综合| 亚洲图片欧洲图片av| 欧美影片第一页| 欧美国产亚洲另类动漫| 日韩亚洲欧美高清| 久久久久久国产精品mv| 在线观看福利一区| 一区二区三区欧美在线| 亚洲一区二区视频在线| 销魂美女一区二区三区视频在线| 久久精品72免费观看| 欧美激情第二页| 亚洲手机在线| 美乳少妇欧美精品| 国产日韩av一区二区| 亚洲精品久久嫩草网站秘色| 久久激情视频久久| 亚洲毛片在线看| 久久久爽爽爽美女图片| 国产精品日韩一区二区三区| 亚洲精品久久7777| 久久综合中文字幕| 午夜激情综合网| 鲁鲁狠狠狠7777一区二区| 国产精品福利网| 亚洲伦理精品| 欧美1区2区3区| 亚洲综合首页| 欧美午夜精品久久久久久久| 亚洲国产精品成人| 另类天堂av| 欧美一区免费| 国产欧美一区二区白浆黑人| 亚洲在线播放电影| 亚洲精品美女在线观看| 久久综合久久综合这里只有精品 | 欧美激情va永久在线播放| 欧美一区二区三区免费观看| 国产精品久久九九| 亚洲在线观看免费视频| 一区二区免费看| 国产精品av免费在线观看| 中文国产成人精品久久一| 亚洲看片网站| 欧美性猛交xxxx乱大交退制版| 欧美日韩妖精视频| 欧美华人在线视频| 亚洲精品美女91| 亚洲国产精品久久久| 欧美成人一区二区在线| 亚洲人成人99网站| 亚洲蜜桃精久久久久久久| 欧美日韩一区二区三区在线视频| 99视频精品全部免费在线| 亚洲精品一区二| 国产精品久久99| 久久国产色av| 久久在线视频| 在线视频精品一区| 亚洲免费网址| 亚洲高清二区| 亚洲精品一区久久久久久| 国产精品福利在线观看网址| 欧美一区二区观看视频| 久久久久久91香蕉国产| 日韩天堂av| 亚洲视频精品在线| 在线观看国产一区二区| 亚洲毛片一区| 国内精品视频在线播放| 亚洲国产经典视频| 国产精品久久久久久妇女6080| 欧美一区二区三区四区高清| 久久网站免费| 亚洲一区二区三区精品在线观看| 午夜精品一区二区三区在线| 亚洲国产精品va在看黑人| 99精品国产高清一区二区 | 国产精品国产馆在线真实露脸 | 久久亚洲春色中文字幕久久久| 久久色在线播放| 亚洲一区二区av电影| 久久成人精品电影| 中国女人久久久| 欧美一区午夜视频在线观看| 亚洲乱码国产乱码精品精可以看 | 欧美激情乱人伦| 国产精品日韩欧美| 亚洲国产人成综合网站| 国产欧美一区二区三区沐欲| 最新日韩在线视频| 精品999成人| 午夜精品久久久久久99热软件| 亚洲精品久久久久久久久久久久久| 亚洲一区二区三区精品在线观看| 含羞草久久爱69一区| 久久人人爽人人爽爽久久| 免费久久久一本精品久久区| 亚洲男同1069视频| 久久女同精品一区二区| 亚洲欧洲精品一区二区精品久久久| 国产精品久久久久久久久搜平片| 免费久久99精品国产自在现线| 国产精品成人在线观看| 亚洲精选在线观看| 亚洲电影观看| 欧美在线首页| 久久av老司机精品网站导航| 欧美日韩国产在线播放网站| 亚洲大黄网站| 亚洲国产精品久久久久久女王| 国产精品免费久久久久久| 亚洲欧美一区二区精品久久久| 亚洲国产导航| 欧美一区激情视频在线观看| 中国亚洲黄色| 欧美国产欧美亚洲国产日韩mv天天看完整 | 亚洲国产精品va在线看黑人| 欧美成人dvd在线视频| 久久国产精品久久w女人spa| 国产精品高潮在线| 日韩视频一区二区三区在线播放免费观看 | 久久国产精品久久久| 日韩天堂av| 久久久亚洲精品一区二区三区 | 亚洲激情成人| 久久综合电影一区| 免费永久网站黄欧美| 在线精品在线| 久热精品在线视频| 欧美gay视频激情| 亚洲电影成人| 欧美成人精品在线观看| 亚洲国产专区校园欧美| 日韩午夜三级在线| 欧美日韩激情小视频| 亚洲午夜国产一区99re久久| 久久不射2019中文字幕| 激情成人亚洲| av成人动漫| 一区二区三区四区在线| 99视频日韩| 国产精品九九久久久久久久| 亚洲欧美日韩直播| 你懂的成人av| av成人免费| 国产免费亚洲高清| 久久av最新网址| 亚洲国产欧美久久| 亚洲综合欧美日韩| 亚洲电影在线播放| 欧美视频国产精品| 久久久国产精品亚洲一区 | 欧美性一区二区| 午夜伦欧美伦电影理论片| 老司机67194精品线观看| 亚洲日本在线视频观看| 欧美性猛交xxxx免费看久久久| 欧美在线免费播放| 91久久国产综合久久蜜月精品 | 欧美呦呦网站| 亚洲人体大胆视频| 国产视频亚洲精品| 欧美日韩一区二区免费在线观看 | 久久一二三国产| 亚洲午夜电影网| 91久久国产自产拍夜夜嗨| 国产九色精品成人porny| 欧美激情精品久久久久久变态| 小嫩嫩精品导航| 99国产精品99久久久久久粉嫩| 久久夜精品va视频免费观看| 亚洲一区在线免费观看| 亚洲精品欧洲精品| 一区在线影院| 欧美午夜不卡| 欧美黄色免费| 久久午夜色播影院免费高清| 亚洲欧美日韩区| 国产精品99久久久久久久vr| 亚洲激情偷拍| 欧美成人精品在线观看| 久久久成人精品| 欧美一级电影久久| 亚洲一区尤物|