• <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>

            ts,ps,mpeg2 decoder and analysis

            mepg 2, iptv, stream parse,mov,mxf,gxf,ac3,aac

              C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
              21 隨筆 :: 0 文章 :: 54 評論 :: 0 Trackbacks


             第一部分 變量及宏定義
              1.消息映射宏
               vlc_module_begin();
               …………………..
              vlc_module_end();
              2.結構中包含函數
               struct input_thread_t
              {
               VLC_COMMON_MEMBERS
               /* Thread properties */
               vlc_bool_t b_eof;
               vlc_bool_t b_out_pace_control;
               /* Access module */
               module_t * p_access;
               ssize_t (* pf_read ) ( input_thread_t *, byte_t *, size_t );
               int (* pf_set_program )( input_thread_t *, pgrm_descriptor_t * );
               int (* pf_set_area )( input_thread_t *, input_area_t * );
               void (* pf_seek ) ( input_thread_t *, off_t );
              }
              3.宏與換行符妙用
              #define VLC_COMMON_MEMBERS /** \name VLC_COMMON_MEMBERS * these members are common for all vlc objects */ /**@{*/ int i_object_id; int

            i_object_type; char *psz_object_type; char *psz_object_name; /** Just a reminder so that people don't cast garbage */ int

            be_sure_to_add_VLC_COMMON_MEMBERS_to_struct; /**@}*/
              #define VLC_OBJECT( x ) \
              ((vlc_object_t *)(x))+
              0*(x)- be_sure_to_add_VLC_COMMON_MEMBERS_to_struct
              struct vlc_object_t
              {
               VLC_COMMON_MEMBERS
              };//定義一個結構來使用宏定義的公共成員
              4.定義導出函數
              #ifndef __PLUGIN__
              # define VLC_EXPORT( type, name, args ) type name args
              #else
              # define VLC_EXPORT( type, name, args ) struct _u_n_u_s_e_d_
               extern module_symbols_t* p_symbols;
              #endif
              5.定義回調函數
              typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
               char const *, /* variable name */
               vlc_value_t, /* old value */
               vlc_value_t, /* new value */
               void * ); /* callback data */
              6.函數作為參數的定義方式
               Int Fun(int n,int (*pf)(int ,int),char *pstr)
              { int j =10;
              pf(n,j);
              }
              7.回調函數的聲明
              必須聲明為global,或者static
              Int vlc_callback_t (int ,int)
              {。。。。。。。。。。。}
              
              8.回調函數的使用
               Fun(0, vlc_callback_t,”test”);
              9.函數表達式
              #define input_BuffersInit(a) __input_BuffersInit(VLC_OBJECT(a))
              void * __input_BuffersInit( vlc_object_t * );
              #define module_Need(a,b,c,d) __module_Need(VLC_OBJECT(a),b,c,d)
              VLC_EXPORT( module_t *, __module_Need, ( vlc_object_t *, const char *, const char *, vlc_bool_t ) );
              10.定義函數
               /* Dynamic array handling: realloc array, move data, increment position */
              #define INSERT_ELEM( p_ar, i_oldsize, i_pos, elem ) do { if( i_oldsize ) { (p_ar) = realloc( p_ar, ((i_oldsize) + 1) * sizeof( *(p_ar) )

            ); } else { (p_ar) = malloc( ((i_oldsize) + 1) * sizeof( *(p_ar) ) ); } if( (i_oldsize) - (i_pos) ) { memmove( (p_ar) + (i_pos) + 1, (p_ar) +

            (i_pos), ((i_oldsize) - (i_pos)) * sizeof( *(p_ar) ) ); } (p_ar)[i_pos] = elem; (i_oldsize)++; } while( 0 )
              應用為:
               INSERT_ELEM( p_new- p_libvlc- pp_objects,
               p_new- p_libvlc- i_objects,
               p_new- p_libvlc- i_objects,
               p_new );
              11.改變地址的方式傳遞其值
              stream_t *input_StreamNew( input_thread_t *p_input )
              { stream_t *s = vlc_object_create( p_input, sizeof( stream_t ) );
               input_stream_sys_t *p_sys;
               if( s )
               {
               s- p_sys = malloc( sizeof( input_stream_sys_t ) );
               p_sys = (input_stream_sys_t*)s- p_sys;
               p_sys- p_input = p_input;
               }
              return s;//注解:s- p_sys改變了
              }
               第二部分 程序框架實現
              1.播放列表文件src/playlist/playlist.c的線程
              playlist_t * __playlist_Create ( vlc_object_t *p_parent )函數中創建的線程,線程函數為
              static void RunThread ( playlist_t *p_playlist )
               線程思路分析:
               在RunThread里面執行循環,如果沒有任務執行,則適當的延遲,如果接到p_playlist- i_status != PLAYLIST_STOPPED的條件,則調用PlayItem(

            p_playlist )函數,在PlayItem( p_playlist )函數中從新創建輸入線程。
              通過void playlist_Command( playlist_t * p_playlist, playlist_command_t i_command,int i_arg )接收來自GUI界面的各種命令,然后設置p_playlist-

            i_status的狀態,由該狀態改變該播放列表文件主循環線程的執行。
              2.輸入文件SRC/INPUT/INPUT.C的輸入線程
               input_thread_t *__input_CreateThread( vlc_object_t *p_parent,
               input_item_t *p_item )函數中創建的線程,線程函數為
              static int RunThread( input_thread_t *p_input )
               線程思路分析:
              由 input_thread_t結構的成員分析是接收文件流還是網絡流,如果是文件流,則調用file module 的讀函數(pf_read)和打開函數(--).如果是network 則打

            開network module 的打開函數和讀函數(pf_read)。
               在 RunThread線程函數中接收數據和調用demux 或者decode etc處理。
              一旦產生新的輸入,則在播放列表線程中會首先結束該輸入線程,然后從新創建新的輸入線程。
              3.視頻輸出文件src/video_output/ video_output.c的線程
              vout_thread_t * __vout_Create( vlc_object_t *p_parent,
               unsigned int i_width, unsigned int i_height,
               vlc_fourcc_t i_chroma, unsigned int i_aspect )函數中創建的線程,線程函數為
              static void RunThread( vout_thread_t *p_vout)
              線程思路分析:
               在RunThread里面執行循環,任務是顯示視頻。
              4.在modules\gui\wxwindows\wxwindows.cpp中的GUI線程
              static void Run( intf_thread_t *p_intf ) 函數中創建的線程,線程函數為
               static void Init( intf_thread_t *p_intf )
              線程思路分析:
               在Init( intf_thread_t *p_intf )里面執行循環,創建新的GUI實例。Instance-》OnInit()(CreateDialogsProvider)-》DialogsProvider為運行的對話

            框。
               接收網絡文件的步驟
              OnOpenNet( wxCommandEvent& event )打開網絡文件的步驟。打開OpenDialog對話框,點擊Ok后調用OpenDialog::OnOk( wxCommandEvent& WXUNUSED(event)

            )函數,調用playlist_Command函數改變播放列表線程的狀態。
               激活線程分析:
               在wxwindow.cpp中的消息映射中 set_callbacks( OpenDialogs, Close ); 則設置了module_t- pf_activate= OpenDialogs函數,
               在module.c 的__module_Need( vlc_object_t *p_this, const char *psz_capability,
               const char *psz_name, vlc_bool_t b_strict )
              函數中用到了pf_activate激活GUI對話框;
               在video_output.c 的static void RunThread( vout_thread_t *p_vout)線程中,也用到了pf_activate激活GUI對話框;
              5.開始所有module 的精髓
               消息映射宏
               vlc_module_begin();
               set_callbacks( NetOpen, NULL );
              vlc_module_end();
              然后設置模塊結構的成員函數為:
              #define set_callbacks( activate, deactivate ) p_submodule- pf_activate = activate; p_submodule- pf_deactivate = deactivate
              在__module_Need函數中啟動pf_activate 激活相應的module。


            網絡數據流接收處理分析
              1、在input.c(src\input)文件中的主線程循環
               Thread in charge of processing the network packets and demultiplexing
              RunThread( input_thread_t *p_input )
              {
               InitThread( p_input ) ;
              …………………………………………………….
               input_SelectES( p_input, p_input->stream.p_newly_selected_es );
               …………………………………………………….
               /* Read and demultiplex some data. */
               i_count = p_input->pf_demux( p_input );
              }
              2、在下列函數中:
              分離出access , demux , name字符串 ;
              根據分離出的access 字符串通過module_Need函數找到acess 指針模塊;
              根據分離出的demux 字符串通過module_Need函數找到demux 指針模塊;
              static int InitThread( input_thread_t * p_input )
              {
               msg_Dbg( p_input, "access `%s', demux `%s', name `%s'",
               p_input->psz_access, p_input->psz_demux, p_input->psz_name );
               /* Find and open appropriate access module */
               p_input->p_access = module_Need( p_input, "access",
               p_input->psz_access, VLC_TRUE );
              …………………………………………………….
               while( !input_FillBuffer( p_input ) )
               …………………………………………………….
               /* Find and open appropriate demux module */
               p_input->p_demux =
               module_Need( p_input, "demux",
               (p_input->psz_demux && *p_input->psz_demux) ?
               p_input->psz_demux : "$demux",
               (p_input->psz_demux && *p_input->psz_demux) ?
               VLC_TRUE : VLC_FALSE );
              …………………………………………………….
              }
              3、在ps.c (module\demux\mpeg)文件中
              a.通過消息映射宏賦值啟動函數Activate;
              b.通過函數Activate賦值p_input->pf_demux = Demux;
              c. 通過函數module_Need( p_input, "mpeg-system", NULL, 0 ) 激活p_input->p_demux_data->mpeg.pf_read_ps( p_input, &p_data )函數(pf_read_ps)

            ;
              d.在InitThread函數中激活;
               static int Activate( vlc_object_t * p_this )
              {
               /* Set the demux function */
              p_input->pf_demux = Demux;
              p_input->p_private = (void*)&p_demux->mpeg;
               p_demux->p_module = module_Need( p_input, "mpeg-system", NULL, 0 );
              }
              4、在system.c (module\demux\mpeg)文件中
               賦值解碼模塊mpeg_demux_t的成員函數;
               static int Activate ( vlc_object_t *p_this )
              {
               static mpeg_demux_t mpeg_demux =
               { NULL, ReadPS, ParsePS, DemuxPS, ReadTS, DemuxTS };
               mpeg_demux.cur_scr_time = -1;
               memcpy( p_this->p_private, &mpeg_demux, sizeof( mpeg_demux ) );
               return VLC_SUCCESS;
              }
              并且申明函數static ssize_t ReadPS( input_thread_t * p_input, data_packet_t ** pp_data );
              5、在ps.c (module\demux\mpeg)文件中
              Demux( input_thread_t * p_input )
              {
              i_result = p_input->p_demux_data->mpeg.pf_read_ps( p_input, &p_data );
               p_input->p_demux_data->mpeg.pf_demux_ps( p_input, p_data );
              }
              進行讀取數據和分離工作;
              6、在system.c (module\demux\mpeg)文件中
              數據走向圖如下
              ReadPS-> PEEK-> input_Peek(src\input\input_ext-plugins.c)-> input_FillBuffert 通過 i_ret = p_input->pf_read( p_input,
               (byte_t *)p_buf + sizeof(data_buffer_t)
               + i_remains,
               p_input->i_bufsize );
              input_thread_t結構的pf_read函數成員如果是為udp.c(modules\access)的RTPChoose函數
              則在開啟access(UDP 模塊)時通過module_need 激活;
              激活網絡讀數據模塊 RTPChoose(modules\access\ udp.c)->Read->net_Read(src\misc\net.c);
              7、在input_programs.c(src\input)文件中
               運行解碼器對ES流解碼
               int input_SelectES( input_thread_t * p_input, es_descriptor_t * p_es )
              {
               p_es->p_dec = input_RunDecoder( p_input, p_es );
              
              }
              input_SelectES(src\input\input_programs.c)->input_RunDecoder(src \input\input_dec.c)->DecoderThread->DecoderDecode -

            >vout_DisplayPicture

             


            從接收到數據流到播放視頻的過程分析

               從網絡接收到流->對數據流進行視頻和音頻分離->對視頻用解碼器解碼->顯示解碼后的視頻流

             

                視頻顯示部分走勢線:分離->解碼->新的VOUT緩沖區->VOUT線程

            Demux(modules\demux\mpeg\ps.c)->DemuxPs(modules\demux\mpeg\system.c)-> ParsePS->input_SelectES(src\input\input_programs.c)->input_RunDecoder

            (src\input\input_dec.c)->CreateDecoder->

            vout_new_buffer->vout_Request(src\video_output\video_output.c)->vout_Create->RunThread->vout_RenderPicture(src\video_output\vout_pictures.c)-

            >pf_display

             

            注意:p_dec->pf_vout_buffer_new = vout_new_buffer的pf_vout_buffer_new在ffmpeg_NewPictBuf(modules\codec\ffmpeg\video.c)函數中激活

             

               解碼部分走勢線:

            Demux(modules\demux\mpeg\ps.c)->DemuxPs(modules\demux\mpeg\system.c)-> ParsePS->input_SelectES(src\input\input_programs.c)->input_RunDecoder

            (src\input\input_dec.c)->CreateDecoder->


            DecoderThread

              注意:在解碼線程中對數據流(AUDIO 或者VIDEO)進行解碼

            詳細資料 http://developers.videolan.org/vlc/    VLC API documentation  或者VLC developer documentation

             
            Chapter 5.  The video output layer
            Data structures and main loop

            Important data structures are defined in include/video.h and include/video_output.h. The main data structure is picture_t, which describes

            everything a video decoder thread needs. Please refer to this file for more information. Typically, p_data will be a pointer to YUV planar

            picture.

            Note also the subpicture_t structure. In fact the VLC SPU decoder only parses the SPU header, and converts the SPU graphical data to an

            internal format which can be rendered much faster. So a part of the "real" SPU decoder lies in src/video_output/video_spu.c.

            The vout_thread_t structure is much more complex, but you needn't understand everything. Basically the video output thread manages a heap of

            pictures and subpictures (5 by default). Every picture has a status (displayed, destroyed, empty...) and eventually a presentation time. The

            main job of the video output is an infinite loop to : [this is subject to change in the near future]

               1.

                  Find the next picture to display in the heap.
               2.

                  Find the current subpicture to display.
               3.

                  Render the picture (if the video output plug-in doesn't support YUV overlay). Rendering will call an optimized YUV plug-in, which will

            also do the scaling, add subtitles and an optional picture information field.
               4.

                  Sleep until the specified date.
               5.

                  Display the picture (plug-in function). For outputs which display RGB data, it is often accomplished with a buffer switching. p_vout-

            >p_buffer is an array of two buffers where the YUV transform takes place, and p_vout->i_buffer_index indicates the currently displayed buffer.
               6.

                  Manage events.

            Methods used by video decoders

            The video output exports a bunch of functions so that decoders can send their decoded data. The most important function is vout_CreatePicture

            which allocates the picture buffer to the size indicated by the video decoder. It then just needs to feed (void *) p_picture->p_data with the

            decoded data, and call vout_DisplayPicture and vout_DatePicture upon necessary.

                *

                  picture_t * vout_CreatePicture ( vout_thread_t *p_vout, int i_type, int i_width, int i_height ) : Returns an allocated picture buffer.

            i_type will be for instance YUV_420_PICTURE, and i_width and i_height are in pixels.
                  Warning

                  If no picture is available in the heap, vout_CreatePicture will return NULL.
                *

                  vout_LinkPicture ( vout_thread_t *p_vout, picture_t *p_pic ) : Increases the refcount of the picture, so that it doesn't get accidently

            freed while the decoder still needs it. For instance, an I or P picture can still be needed after displaying to decode interleaved B pictures.
                *

                  vout_UnlinkPicture ( vout_thread_t *p_vout, picture_t *p_pic ) : Decreases the refcount of the picture. An unlink must be done for every

            link previously made.
                *

                  vout_DatePicture ( vout_thread_t *p_vout, picture_t *p_pic ) : Gives the picture a presentation date. You can start working on a picture

            before knowing precisely at what time it will be displayed. For instance to date an I or P picture, you must wait until you have decoded all

            previous B pictures (which are indeed placed after - decoding order != presentation order).
                *

                  vout_DisplayPicture ( vout_thread_t *p_vout, picture_t *p_pic ) : Tells the video output that a picture has been completely decoded and

            is ready to be rendered. It can be called before or after vout_DatePicture.
                *

                  vout_DestroyPicture ( vout_thread_t *p_vout, picture_t *p_pic ) : Marks the picture as empty (useful in case of a stream parsing error).
                *

                  subpicture_t * vout_CreateSubPicture ( vout_thread_t *p_vout, int i_channel, int i_type ) : Returns an allocated subpicture buffer.

            i_channel is the ID of the subpicture channel, i_type is DVD_SUBPICTURE or TEXT_SUBPICTURE, i_size is the length in bytes of the packet.
                *

                  vout_DisplaySubPicture ( vout_thread_t *p_vout, subpicture_t *p_subpic ) : Tells the video output that a subpicture has been completely

            decoded. It obsoletes the previous subpicture.
                *

                  vout_DestroySubPicture ( vout_thread_t *p_vout, subpicture_t *p_subpic ) : Marks the subpicture as empty.

             


            VLC(五) 視頻播放的基本原理

                當初Roger看VLC代碼花了不少時間,其中很大的原因是不太了解視頻播放的基本原理?,F在看來,幾乎所有的視頻播放器,如VLC、MPlayer、 Xine,包括

            DirectShow,在播放視頻的原理和架構上都是非常相似的,理解這個對理解VLC的源碼會有事半功倍的效果。

                大致的來說,播放一個視頻分為4個步驟:

                1.  acess 訪問,或者理解為接收、獲取、得到

                2. demux 解復用,就是把通常合在一起的音頻和視頻分離(還有可能的字幕)  

                3. decode 解碼,包括音頻和視頻的解碼

                4. output 輸出,也分為音頻和視頻的輸出(aout和vout)

                拿播放一個UDP組播的MPEG TS流來說吧,access部分負責從網絡接收組播流,放到VLC的內存緩沖區中,access模塊關注IP協議,如是否IPv6、組播地址、組

            播協議、端口等信息;如果檢測出來是RTP協議(RTP協議在UDP頭部簡單得加上了固定12個字節的信息),還要分析RTP頭部信息。這部分可以參看VLC源碼

            /modules/access/udp.c 。在同目錄下還可以看到大量的access模塊,如file、http、dvd、ftp、smb、tcp、dshow、mms、v4l…等等

                而demux部分首先要解析TS流的信息。TS格式是MPEG2協議的一部分,概括地說,TS通常是固定188字節的一個packet,一個TS流可以包含多個program(節目)

            ,一個program又可以包含多個視頻、音頻、和文字信息的ES流;每個ES流會有不同的PID標示。而又為了可以分析這些ES流,TS有一些固定的PID用來間隔發送

            program和es流信息的表格:PAT和PMT表。關于TS格式的詳細信息可以去google一下。

                VLC專門做了一個獨立的庫libdvbpsi來解析和編碼TS流,而調用它的代碼可以參見VLC源碼 /modules/demux/ts.c。

                其實之所以需要demux,是因為音視頻在制作的時候實際上都是獨立編碼的,得到的是分開的數據,為了傳輸方便必須要用某種方式合起來,這就有了各種封

            裝格式也就有了demux。

                demux分解出來的音頻和視頻流分別送往音頻解碼器和視頻解碼器。因為原始的音視頻都是占用大量空間,而且冗余度較高的數據,通常在制作的時候就會進

            行某種壓縮。這就是我們熟知的音視頻編碼格式,包括MPEG1(VCD)、MPEG2(DVD)、MPEG4、H.264、rmvb等等。音視頻解碼器的作用就是把這些壓縮了的數據還

            原成原始的音視頻數據。VLC解碼MPEG2使用了一個獨立的庫libmpeg2,調用它的源文件是 /modules/codec/libmpeg2.c。VLC關于編解碼的模塊都放

            在/modules/codec目錄下,其中包括著名的龐大的 ffmpeg。

                解碼器,例如視頻解碼器輸出的是一張一張的類似位圖格式的圖像,但是要讓人從屏幕看得到,還需要一個視頻輸出的模塊。當然可以像一個Win32窗口程序

            那樣直接把圖像畫到窗口DC上——VLC的一個輸出模塊WinGDI就是這么干的,但是通常這太慢了,而且消耗大量的CPU。在Windows下比較好的辦法是用DirectX的接

            口,會自動調用顯卡的加速功能。

                這樣的功能分解使得模塊化更容易一點,每個模塊住需要專注于自己的事;從整體來說功能強大而且靈活。

                但是事情總是不會那么簡單。就拿access來說,媒體的訪問是分層的,如RTSP就涉及到IPv4、TCP、UDP、RTCP、RTSP等多個層次的協議。有些視頻格式包括了

            傳輸、封裝格式和編輯碼格式如MPEG系列,有些封裝格式是獨立的容器,但是很多人會誤解它是編解碼格式,如mkv、avi這些。

                音頻和視頻在demux之后就是獨立的,但是需要有一套機制把它們同步起來。同時我們需要有一套機制來控制速度、暫停、停止、跳進,獲取各種媒體信息,

            這些都是很復雜而又很重要的事情。

                另外也許需要在某個地方插入一些修改,來實現某種效果。如音頻的EQ,視頻的亮度調整之類的,VLC專門設計了access_filter、audio_filter和

            video_filter類型的模塊來做這一類事情。

                VLC比較獨特的地方是集成了原來的VLS的功能,這依賴于VLC中stream_output類型的模塊,它們可以把正在播放的視頻以某種方式重新轉碼和發送出去,如

            http、UDP、文件等等。

                MPlayer的結構與此是類似的,如/stream目錄對應的是access的功能,/mpdemux對應的demux功能,/libmpcodecs是解碼器,/libvo和/libao2分別是視頻和音

            頻的輸出。

                DirectShow也是類似的,不過分類更多一些更復雜一點。DirectShow里面的模塊叫做“filter”,filter之間通過”pin”來連接。access的模塊對應于

            DirectShow中的Source FIlter,這一類Filter只有輸出pin沒有輸入pin。demux模塊對應于splitter filter,這種filter有一個輸入pin,多個輸出pin。解碼模

            塊是一類transform filter,有一個輸入pin、一個輸出pin,輸出模塊對應于readering filter,有一個輸入pin,沒有輸出pin。當然transform filter不一定是

            解碼器,也可能是某種其他的處理。

                回到VLC的話題。每一類的模塊數量都很多,那么在打開某一個視頻時,VLC如何決定采用哪一個呢?哈哈,這個以后再說 ^_^

                另外給出一個VLC的API Document,有點老了不過挺值得一看的,在VLC wiki上找不到了,就貼出來:http://rogerfd.cn/doc/vlcapi.htm

              

            ————————————————————————

            作者: roger

            Blog: http://rogerfd.cn

            Email:roger99707@163.com

            本文歡迎轉載和引用,請保留本說明并注明出處



            TS,MPEG2,dvbc專家 2009-10-16 09:16 發表評論

            文章來源:http://www.cnitblog.com/dvb-dvb/archive/2009/10/16/61895.html
            posted on 2009-10-16 09:16 TS,MPEG2,dvbc專家 閱讀(1888) 評論(0)  編輯 收藏 引用
            ts,ps,mpeg2 decoder and analysis,ts分析.
            亚洲精品白浆高清久久久久久| 欧美一区二区精品久久| 无夜精品久久久久久| 中文字幕久久亚洲一区| 色综合久久无码五十路人妻| 国产91色综合久久免费| 综合久久一区二区三区| 久久久久亚洲AV成人片 | 欧美久久久久久午夜精品| 久久精品国产精品亚洲艾草网美妙 | 久久99国内精品自在现线| 久久国产免费直播| 久久99亚洲网美利坚合众国| 久久久黄片| 久久综合九色综合欧美狠狠| 久久精品中文无码资源站| 91精品国产色综合久久| 久久国产免费直播| 人人狠狠综合久久亚洲| 88久久精品无码一区二区毛片| 久久九九久精品国产免费直播| 狠狠色综合久久久久尤物| 国产亚洲综合久久系列| 久久精品人人做人人爽电影 | 伊人久久大香线蕉综合影院首页| 久久不射电影网| 久久综合给合久久狠狠狠97色69| 精品久久久一二三区| 久久精品成人欧美大片| 99久久亚洲综合精品网站| 国产精品一区二区久久国产| 亚洲精品国产美女久久久| 欧洲国产伦久久久久久久| 久久99精品国产麻豆不卡| 狠狠干狠狠久久| 久久91精品国产91久久小草| 久久国产亚洲高清观看| 91精品国产色综合久久| 欧美牲交A欧牲交aⅴ久久| 日日噜噜夜夜狠狠久久丁香五月| 亚洲中文字幕无码久久2017|