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

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

?? createrh264avcdecoder.cpp

?? JMVM MPEG MVC/3DAV 測試平臺 國際通用標準
?? CPP
?? 第 1 頁 / 共 3 頁
字號:
/*
********************************************************************************

NOTE - One of the two copyright statements below may be chosen
       that applies for the software.

********************************************************************************

This software module was originally developed by

Heiko Schwarz    (Fraunhofer HHI),
Tobias Hinz      (Fraunhofer HHI),
Karsten Suehring (Fraunhofer HHI)

in the course of development of the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video
Coding) for reference purposes and its performance may not have been optimized.
This software module is an implementation of one or more tools as specified by
the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding).

Those intending to use this software module in products are advised that its
use may infringe existing patents. ISO/IEC have no liability for use of this
software module or modifications thereof.

Assurance that the originally developed software module can be used
(1) in the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) once the
ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) has been adopted; and
(2) to develop the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding): 

To the extent that Fraunhofer HHI owns patent rights that would be required to
make, use, or sell the originally developed software module or portions thereof
included in the ISO/IEC 14496-10:2005 Amd.1 (Scalable Video Coding) in a
conforming product, Fraunhofer HHI will assure the ISO/IEC that it is willing
to negotiate licenses under reasonable and non-discriminatory terms and
conditions with applicants throughout the world.

Fraunhofer HHI retains full right to modify and use the code for its own
purpose, assign or donate the code to a third party and to inhibit third
parties from using the code for products that do not conform to MPEG-related
ITU Recommendations and/or ISO/IEC International Standards. 

This copyright notice must be included in all copies or derivative works.
Copyright (c) ISO/IEC 2005. 

********************************************************************************

COPYRIGHT AND WARRANTY INFORMATION

Copyright 2005, International Telecommunications Union, Geneva

The Fraunhofer HHI hereby donate this source code to the ITU, with the following
understanding:
    1. Fraunhofer HHI retain the right to do whatever they wish with the
       contributed source code, without limit.
    2. Fraunhofer HHI retain full patent rights (if any exist) in the technical
       content of techniques and algorithms herein.
    3. The ITU shall make this code available to anyone, free of license or
       royalty fees.

DISCLAIMER OF WARRANTY

These software programs are available to the user without any license fee or
royalty on an "as is" basis. The ITU disclaims any and all warranties, whether
express, implied, or statutory, including any implied warranties of
merchantability or of fitness for a particular purpose. In no event shall the
contributor or the ITU be liable for any incidental, punitive, or consequential
damages of any kind whatsoever arising from the use of these programs.

This disclaimer of warranty extends to the user of these programs and user's
customers, employees, agents, transferees, successors, and assigns.

The ITU does not represent or warrant that the programs furnished hereunder are
free of infringement of any third-party patents. Commercial implementations of
ITU-T Recommendations, including shareware, may be subject to royalty fees to
patent holders. Information regarding the ITU-T patent policy is available from 
the ITU Web site at http://www.itu.int.

THIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY.

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



#include "H264AVCDecoderLib.h"


#include "H264AVCDecoder.h"
#include "GOPDecoder.h"
#include "ControlMngH264AVCDecoder.h"
#include "SliceReader.h"
#include "SliceDecoder.h"
#include "UvlcReader.h"
#include "MbParser.h"
#include "MbDecoder.h"
#include "NalUnitParser.h"
#include "BitReadBuffer.h"
#include "CabacReader.h"
#include "CabaDecoder.h"
#include "FGSSubbandDecoder.h"

#include "H264AVCCommonLib/MbData.h"
#include "H264AVCCommonLib/Frame.h"
#include "H264AVCCommonLib/FrameMng.h"
#include "H264AVCCommonLib/LoopFilter.h"
#include "H264AVCCommonLib/Transform.h"
#include "H264AVCCommonLib/IntraPrediction.h"
#include "H264AVCCommonLib/MotionCompensation.h"
#include "H264AVCCommonLib/YuvBufferCtrl.h"
#include "H264AVCCommonLib/QuarterPelFilter.h"
#include "H264AVCCommonLib/SampleWeighting.h"
#include "H264AVCCommonLib/ParameterSetMng.h"
#include "H264AVCCommonLib/PocCalculator.h"

#include "CreaterH264AVCDecoder.h"

#include "H264AVCCommonLib/TraceFile.h"
#include "H264AVCCommonLib/ReconstructionBypass.h"



H264AVC_NAMESPACE_BEGIN


CreaterH264AVCDecoder::CreaterH264AVCDecoder():
  m_pcH264AVCDecoder      ( NULL ),
  m_pcRQFGSDecoder        ( NULL ),
  m_pcFrameMng            ( NULL ),
  m_pcParameterSetMng     ( NULL ),
  m_pcSliceReader         ( NULL ),
  m_pcNalUnitParser       ( NULL ),
  m_pcSliceDecoder        ( NULL ),
  m_pcControlMng          ( NULL ),
  m_pcBitReadBuffer       ( NULL ),
  m_pcUvlcReader          ( NULL ),
  m_pcMbParser            ( NULL ),
  m_pcLoopFilter          ( NULL ),
  m_pcMbDecoder           ( NULL ),
  m_pcTransform           ( NULL ),
  m_pcIntraPrediction     ( NULL ),
  m_pcMotionCompensation  ( NULL ),
  m_pcQuarterPelFilter    ( NULL ),
  m_pcCabacReader         ( NULL ),
  m_pcSampleWeighting     ( NULL )
{
  //::memset( m_apcDecodedPicBuffer,     0x00, MAX_LAYERS * sizeof( Void* ) );
  //::memset( m_apcMCTFDecoder,          0x00, MAX_LAYERS * sizeof( Void* ) );
  ::memset( m_apcPocCalculator,        0x00, MAX_LAYERS * sizeof( Void* ) );
  ::memset( m_apcYuvFullPelBufferCtrl, 0x00, MAX_LAYERS * sizeof( Void* ) );
}




CreaterH264AVCDecoder::~CreaterH264AVCDecoder()
{
}

//SEI {
Bool	
CreaterH264AVCDecoder::DecideDecodeView()
{
	return m_pcH264AVCDecoder->DecideDecodeView();
}
Bool
CreaterH264AVCDecoder::getActiveViewFlag(UInt ViewId)
{
  return m_pcH264AVCDecoder->getActiveViewFlag( ViewId );
}
//SEI }
ErrVal
CreaterH264AVCDecoder::process( PicBuffer*     pcPicBuffer,
                             PicBufferList& rcPicBufferOutputList,
                             PicBufferList& rcPicBufferUnusedList,
                             PicBufferList& rcPicBufferReleaseList )
{
  return m_pcH264AVCDecoder->process( pcPicBuffer,
                                   rcPicBufferOutputList,
                                   rcPicBufferUnusedList,
                                   rcPicBufferReleaseList );
}


ErrVal
CreaterH264AVCDecoder::initPacket( BinDataAccessor*  pcBinDataAccessor,
								                  UInt&             ruiNalUnitType,
								                  UInt&             uiMbX,
								                  UInt&             uiMbY,
								                  UInt&             uiSize
												  //,UInt&			  uiNonRequiredPic //NonRequired JVT-Q066
                                                  //JVT-P031
								                  ,Bool             bPreParseHeader //FRAG_FIX
								                  , Bool			bConcatenated //FRAG_FIX_3
                                  ,Bool&            rbStartDecoding,
                                UInt&             ruiStartPos,
                                UInt&             ruiEndPos,
                                Bool&              bFragmented,
                                Bool&              bDiscardable
                                //~JVT-P031
																) 
{
	return m_pcH264AVCDecoder->initPacket( pcBinDataAccessor,
		                                      ruiNalUnitType,
		                                      uiMbX,
		                                      uiMbY,
											  uiSize
											  //,uiNonRequiredPic  //NonRequired JVT-Q066
                                              //JVT-P031
		                                      , bPreParseHeader //FRAG_FIX
		                                      , bConcatenated //FRAG_FIX_3
                                              ,rbStartDecoding,
                                              ruiStartPos,
                                              ruiEndPos,
                                              bFragmented,
                                              bDiscardable
                                              //~JVT-P031
											  ,UnitAVCFlag  //JVT-S036 lsj 
                                               );
}

//JVT-S036  start
ErrVal
CreaterH264AVCDecoder::initPacketSuffix( BinDataAccessor*  pcBinDataAccessor,
								                  UInt&             ruiNalUnitType,
								         		  Bool             bPreParseHeader, //FRAG_FIX
								                  Bool			bConcatenated, //FRAG_FIX_3
												  Bool&			 rbStarDecoding
											      ,CreaterH264AVCDecoder* pcH264AVCDecoder
												  ,Bool&		SuffixEnable
                                  		) 
{
  return m_pcH264AVCDecoder->initPacketPrefix( pcBinDataAccessor,
                                               ruiNalUnitType
                                               , bPreParseHeader //FRAG_FIX
                                               , bConcatenated,//FRAG_FIX_3
                                               rbStarDecoding
                                               ,pcH264AVCDecoder->getH264AVCDecoder()->getSliceHeader()
                                               ,pcH264AVCDecoder->getNalUnitParser()
    );
}
//JVT-S036  end

//JVT-P031
ErrVal
CreaterH264AVCDecoder::initPacket ( BinDataAccessor*  pcBinDataAccessor)
{
  return( m_pcH264AVCDecoder->initPacket(pcBinDataAccessor) );
}
Void
CreaterH264AVCDecoder::decreaseNumOfNALInAU()
{
    m_pcH264AVCDecoder->decreaseNumOfNALInAU();
}
Void
CreaterH264AVCDecoder::setDependencyInitialized(Bool b)
{
    m_pcH264AVCDecoder->setDependencyInitialized(b);
}
UInt
CreaterH264AVCDecoder::getNumOfNALInAU()
{
    return m_pcH264AVCDecoder->getNumOfNALInAU();
}
Void CreaterH264AVCDecoder::initNumberOfFragment()
{
    m_pcH264AVCDecoder->initNumberOfFragment();
}
//~JVT-P031
//JVT-T054{
Void
CreaterH264AVCDecoder::setFGSRefInAU(Bool &b)
{ 
  m_pcH264AVCDecoder->setFGSRefInAU(b);
}
//JVT-T054}
ErrVal
CreaterH264AVCDecoder::checkSliceLayerDependency( BinDataAccessor*  pcBinDataAccessor,
                                                  Bool&             bFinishChecking )
{
	return m_pcH264AVCDecoder->checkSliceLayerDependency( pcBinDataAccessor, bFinishChecking
														 ,UnitAVCFlag   //JVT-S036 
													    );
}

//NonRequired JVT-Q066
UInt 
CreaterH264AVCDecoder::isNonRequiredPic()
{
	return m_pcH264AVCDecoder->isNonRequiredPic(); 
}
//TMM_EC {{
ErrVal 
CreaterH264AVCDecoder::checkSliceGap( BinDataAccessor*  pcBinDataAccessor,
                                      MyList<BinData*>&	cVirtualSliceList)
{
  return m_pcH264AVCDecoder->checkSliceGap( pcBinDataAccessor, cVirtualSliceList 
											,UnitAVCFlag			//JVT-S036 
										   );
}
ErrVal
CreaterH264AVCDecoder::setec( UInt uiErrorConceal)
{
  return m_pcH264AVCDecoder->setec( uiErrorConceal);
}
//TMM_EC }}


// FMO DECODE Init ICU/ETRI DS
Void	  
CreaterH264AVCDecoder::RoiDecodeInit() 
{
	m_pcH264AVCDecoder->RoiDecodeInit();
}

//JVT-V054
UInt*
CreaterH264AVCDecoder::getViewCodingOrder()
{
  return m_pcH264AVCDecoder->getViewOrder();
// Dec. 1 fix 
}

ErrVal CreaterH264AVCDecoder::create( CreaterH264AVCDecoder*& rpcCreaterH264AVCDecoder )
{
  rpcCreaterH264AVCDecoder = new CreaterH264AVCDecoder;
  ROT( NULL == rpcCreaterH264AVCDecoder );
  RNOK( rpcCreaterH264AVCDecoder->xCreateDecoder() )
  return Err::m_nOK;
}



ErrVal CreaterH264AVCDecoder::xCreateDecoder()
{
  RNOK( ParameterSetMng       ::create( m_pcParameterSetMng ) );
  RNOK( FrameMng              ::create( m_pcFrameMng ) );
  RNOK( BitReadBuffer         ::create( m_pcBitReadBuffer ) );
  RNOK( NalUnitParser         ::create( m_pcNalUnitParser) );
  RNOK( SliceReader           ::create( m_pcSliceReader ) );
  RNOK( SliceDecoder          ::create( m_pcSliceDecoder ) );
  RNOK( UvlcReader            ::create( m_pcUvlcReader ) );
  RNOK( CabacReader           ::create( m_pcCabacReader ) );
  RNOK( MbParser              ::create( m_pcMbParser ) );
  RNOK( MbDecoder             ::create( m_pcMbDecoder ) );
  RNOK( LoopFilter            ::create( m_pcLoopFilter ) );
  RNOK( IntraPrediction       ::create( m_pcIntraPrediction ) );
  RNOK( MotionCompensation    ::create( m_pcMotionCompensation ) );
  RNOK( H264AVCDecoder           ::create( m_pcH264AVCDecoder ) );  
  RNOK( RQFGSDecoder             ::create( m_pcRQFGSDecoder ) );
  RNOK( ControlMngH264AVCDecoder ::create( m_pcControlMng ) );
  RNOK( ReconstructionBypass     ::create(m_pcReconstructionBypass) );

  for( UInt uiLayer = 0; uiLayer < MAX_LAYERS; uiLayer++ )
  {
    //RNOK( DecodedPicBuffer    ::create( m_apcDecodedPicBuffer     [uiLayer] ) );
//    RNOK( MCTFDecoder         ::create( m_apcMCTFDecoder          [uiLayer] ) );
// save memory: ying
    RNOK( PocCalculator       ::create( m_apcPocCalculator        [uiLayer] ) );
    RNOK( YuvBufferCtrl       ::create( m_apcYuvFullPelBufferCtrl [uiLayer] ) );
  }

  RNOK( SampleWeighting     ::create( m_pcSampleWeighting ) );
  RNOK( QuarterPelFilter    ::create( m_pcQuarterPelFilter ) );
  RNOK( Transform           ::create( m_pcTransform ) );

  return Err::m_nOK;
}


ErrVal CreaterH264AVCDecoder::destroy()
{
  RNOK( m_pcFrameMng              ->destroy() );
  RNOK( m_pcSliceDecoder          ->destroy() );
  RNOK( m_pcSliceReader           ->destroy() );
  RNOK( m_pcBitReadBuffer         ->destroy() );
  RNOK( m_pcUvlcReader            ->destroy() );
  RNOK( m_pcMbParser              ->destroy() );
  RNOK( m_pcLoopFilter            ->destroy() );
  RNOK( m_pcMbDecoder             ->destroy() );
  RNOK( m_pcTransform             ->destroy() );
  RNOK( m_pcIntraPrediction       ->destroy() );
  RNOK( m_pcMotionCompensation    ->destroy() );
  RNOK( m_pcQuarterPelFilter      ->destroy() );
  RNOK( m_pcCabacReader           ->destroy() );
  RNOK( m_pcNalUnitParser         ->destroy() );
  RNOK( m_pcParameterSetMng       ->destroy() );
  RNOK( m_pcSampleWeighting       ->destroy() );
  RNOK( m_pcH264AVCDecoder        ->destroy() );
  RNOK( m_pcRQFGSDecoder          ->destroy() );
  RNOK( m_pcControlMng            ->destroy() );
  RNOK( m_pcReconstructionBypass  ->destroy() );

  for( UInt uiLayer = 0; uiLayer < MAX_LAYERS; uiLayer++ )
  {
    //RNOK( m_apcDecodedPicBuffer    [uiLayer]->destroy() );
//    RNOK( m_apcMCTFDecoder         [uiLayer]->destroy() );
// save memory: 
    RNOK( m_apcPocCalculator       [uiLayer]->destroy() );
    RNOK( m_apcYuvFullPelBufferCtrl[uiLayer]->destroy() );
  }

  delete this;
  return Err::m_nOK;
}


ErrVal CreaterH264AVCDecoder::init( Bool bOpenTrace, DecoderParameter *Dec_Param)
{
  if( bOpenTrace )
  {
    INIT_DTRACE(0, Dec_Param->getNumOfViews());
    OPEN_DTRACE;
  }
  
  UnitAVCFlag = false;   //JVT-S036 

  RNOK( m_pcBitReadBuffer         ->init() );
  RNOK( m_pcNalUnitParser         ->init( m_pcBitReadBuffer ));
  RNOK( m_pcUvlcReader            ->init( m_pcBitReadBuffer ) );
  RNOK( m_pcCabacReader           ->init( m_pcBitReadBuffer ) );
  RNOK( m_pcQuarterPelFilter      ->init() );
  RNOK( m_pcParameterSetMng       ->init() );
  RNOK( m_pcSampleWeighting       ->init() );
  RNOK( m_pcFrameMng              ->init( m_apcYuvFullPelBufferCtrl[0] ) );
  RNOK( m_pcSliceDecoder          ->init( m_pcMbDecoder,
                                          m_pcControlMng,
                                          m_pcTransform) );
  RNOK( m_pcSliceReader           ->init( m_pcUvlcReader,
                                          m_pcParameterSetMng,
                                          m_pcMbParser,

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲丶国产丶欧美一区二区三区| 国产69精品久久久久毛片| 91视频国产资源| 亚洲精品中文字幕乱码三区| 99久久99久久久精品齐齐| 最新热久久免费视频| 93久久精品日日躁夜夜躁欧美| 综合久久一区二区三区| 91官网在线观看| 亚洲精品中文字幕乱码三区| 欧美色国产精品| 天天综合网 天天综合色| 日韩欧美中文字幕公布| 国产传媒久久文化传媒| 国产日韩v精品一区二区| a4yy欧美一区二区三区| 亚洲一区二区在线观看视频 | 日韩精品亚洲一区二区三区免费| 欧美日本在线视频| 久久99精品国产.久久久久| 久久蜜臀中文字幕| 一本色道久久综合精品竹菊| 婷婷开心激情综合| 国产三级精品视频| 91色乱码一区二区三区| 蜜臀久久99精品久久久久久9 | 不卡免费追剧大全电视剧网站| 亚洲免费电影在线| 91精品欧美综合在线观看最新 | 欧美三级日韩三级| 久草这里只有精品视频| 综合电影一区二区三区 | 一区二区高清视频在线观看| 91精品国产综合久久久蜜臀图片| 国产ts人妖一区二区| 亚洲一区在线电影| 国产精品美女久久久久久| 欧美男女性生活在线直播观看| 国产a级毛片一区| 亚洲国产精品久久久男人的天堂 | 成人av在线资源网站| 91在线一区二区三区| 欧美成人bangbros| 精品亚洲国产成人av制服丝袜 | 亚洲激情中文1区| 精品一区二区国语对白| 欧美一区二区三区日韩视频| 亚洲视频图片小说| 国产一区二区三区精品欧美日韩一区二区三区 | 亚洲一区在线看| 久久这里只精品最新地址| 欧洲亚洲精品在线| 成人午夜av电影| 蜜臀久久99精品久久久画质超高清| 中文乱码免费一区二区| 欧美大片在线观看一区| 欧美高清一级片在线| 不卡高清视频专区| 亚洲综合另类小说| 久久伊人蜜桃av一区二区| 亚洲人成在线观看一区二区| 91色婷婷久久久久合中文| 国产日韩v精品一区二区| 成人短视频下载| 日本一道高清亚洲日美韩| 91精品啪在线观看国产60岁| 一区二区成人在线| 午夜不卡av免费| 成人免费高清在线| 国产精品中文有码| 激情综合色播五月| 久久草av在线| 蜜臀av性久久久久蜜臀aⅴ流畅| 亚洲午夜免费视频| 亚洲一二三区在线观看| 一区二区三区欧美久久| 亚洲免费在线视频一区 二区| 欧美激情一区在线观看| 国产精品欧美精品| 国产精品乱子久久久久| 国产精品成人免费在线| 欧美激情中文字幕| 国产精品短视频| 日韩欧美视频在线| 色婷婷av一区二区三区软件| 99久久精品国产一区二区三区| 亚洲国产精品麻豆| 中文字幕在线视频一区| 日韩欧美一区在线| 欧美日韩一区小说| 成人一区二区三区视频 | 欧美二区三区91| 欧美在线你懂得| 亚洲一区二区三区在线播放| 9191精品国产综合久久久久久| 9191国产精品| 国产亚洲人成网站| 国产精品看片你懂得 | 国产精品久久久久久久久免费樱桃| 国产精品久久久久影院| 一区二区三区在线看| 视频一区二区三区入口| 久久99国产乱子伦精品免费| 国产激情一区二区三区| 暴力调教一区二区三区| 欧美日韩一二三区| 久久久另类综合| 一区二区三区在线高清| 日韩av一级片| 成人免费视频网站在线观看| 欧美午夜片在线观看| 欧美大尺度电影在线| 国产精品久久久久久妇女6080| 亚洲高清免费一级二级三级| 精品伊人久久久久7777人| 99这里只有久久精品视频| 欧美猛男超大videosgay| 精品国产99国产精品| 亚洲激情五月婷婷| 久99久精品视频免费观看| 99精品在线观看视频| 日韩亚洲欧美成人一区| 亚洲视频一区二区在线观看| 免费的国产精品| 99精品在线免费| 久久尤物电影视频在线观看| 一卡二卡欧美日韩| 国内不卡的二区三区中文字幕| 在线亚洲一区二区| 国产视频视频一区| 视频一区二区三区在线| 国产精品系列在线观看| 欧美男男青年gay1069videost| 国产精品人人做人人爽人人添| 日韩和欧美的一区| 91亚洲大成网污www| 欧美大黄免费观看| 亚洲444eee在线观看| 99热精品国产| 久久精品日产第一区二区三区高清版 | 日本一区二区三区视频视频| 午夜精品爽啪视频| 色综合亚洲欧洲| 久久精品视频一区| 狠狠色丁香九九婷婷综合五月| 欧美日韩二区三区| 亚洲免费观看视频| 国产高清不卡二三区| 日韩免费看网站| 午夜欧美视频在线观看| 色综合久久88色综合天天6| 欧美国产一区二区| 国产成人在线视频网站| 精品日韩在线观看| 三级久久三级久久久| 在线观看免费一区| 亚洲欧美一区二区三区极速播放| 成人手机在线视频| 久久久精品tv| 国产高清亚洲一区| 国产亚洲成av人在线观看导航 | 国产成人综合在线| 国产亚洲1区2区3区| 精品一区二区三区免费毛片爱| 7777女厕盗摄久久久| 亚洲午夜精品网| 欧美日韩中文字幕一区| 一区二区视频在线| 在线视频国内自拍亚洲视频| 亚洲欧洲日韩av| 在线观看免费一区| 美女高潮久久久| 蜜臀精品一区二区三区在线观看| 欧美激情一区不卡| 91色九色蝌蚪| 亚洲国产一区二区三区| 欧美性一二三区| 亚洲欧洲av色图| 欧美久久一二区| 国产精品正在播放| 亚洲bt欧美bt精品777| 久久久美女艺术照精彩视频福利播放| 国产剧情av麻豆香蕉精品| 亚洲在线视频网站| 久久久久久影视| 精品国精品国产| 亚洲成人777| 91麻豆精品国产91久久久久| 欧美妇女性影城| 91一区一区三区| 国产风韵犹存在线视精品| 国产精品久久久久久福利一牛影视 | 亚洲一区二区3| 91黄色在线观看| 国产一区二区三区av电影| 性欧美疯狂xxxxbbbb| 国产精品国产三级国产aⅴ原创 | 久久精品一区蜜桃臀影院| 91在线观看美女| 色哟哟在线观看一区二区三区|