Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

85 lines
2.7 KiB

/* *************************************************************************
** INTEL Corporation Proprietary Information
**
** This listing is supplied under the terms of a license
** agreement with INTEL Corporation and may not be copied
** nor disclosed except in accordance with the terms of
** that agreement.
**
** Copyright (c) 1995 Intel Corporation.
** Copyright (c) 1996 Intel Corporation.
** All Rights Reserved.
**
** *************************************************************************
*/
// $Author: gmlim $
// $Date: 17 Apr 1997 16:55:12 $
// $Archive: S:\h26x\src\enc\e3rtp.h_v $
// $Header: S:\h26x\src\enc\e3rtp.h_v 1.4 17 Apr 1997 16:55:12 gmlim $
// $Log: S:\h26x\src\enc\e3rtp.h_v $
;//
;// Rev 1.4 17 Apr 1997 16:55:12 gmlim
;// Added H263RTP_GetMaxBsInfoStreamSize().
;//
;// Rev 1.3 05 Dec 1996 17:03:44 GMLIM
;//
;// Changed the way RTP packetization was done to guarantee proper packet
;// size.
;//
;// Rev 1.2 16 Sep 1996 16:50:26 CZHU
;// changed RTP BS Init for smaller packet size
;//
;// Rev 1.1 29 Aug 1996 09:30:38 CZHU
;//
;// Added a function checking intra-GOB
;//
;// Rev 1.0 22 Apr 1996 17:09:46 BECHOLS
;// Initial revision.
;//
;// Rev 1.4 01 Mar 1996 16:36:30 DBRUCKS
;//
;// add unPacketSize parameter to H263RTP_InitBsInfoStream
;//
;// Rev 1.3 23 Feb 1996 16:18:46 CZHU
;// No change.
;//
;// Rev 1.2 15 Feb 1996 12:00:48 CZHU
;// ean up
;// Clean up
;//
;// Rev 1.1 14 Feb 1996 14:59:38 CZHU
;// Support both mode A and mode B payload modes.
;//
;// Rev 1.0 12 Feb 1996 17:04:46 CZHU
;// Initial revision.
;//
;// Rev 1.3 11 Dec 1995 14:53:24 CZHU
;//
;// Rev 1.2 04 Dec 1995 16:50:52 CZHU
;//
;// Rev 1.1 01 Dec 1995 15:54:12 CZHU
;// Included Init() and Term() functions.
;//
;// Rev 1.0 01 Dec 1995 15:31:10 CZHU
;// Initial revision.
/*
* This file is for RTP payload generation. See EPS for details
*
*
*/
#ifndef _H263_RTP_INC_
#define _H263_RTP_INC_
extern I32 H263RTP_InitBsInfoStream( LPCODINST,T_H263EncoderCatalog *);
extern void H263RTP_ResetBsInfoStream(T_H263EncoderCatalog *);
extern I32 H263RTP_UpdateBsInfo(T_H263EncoderCatalog *,T_MBlockActionStream *,U32,U32,U32,U8 *,U32);
extern void H263RTP_TermBsInfoStream(T_H263EncoderCatalog * );
extern U32 H263RTP_AttachBsInfoStream(T_H263EncoderCatalog * ,U8 *, U32);
extern U32 H263RTPFindMVs (T_H263EncoderCatalog *, T_MBlockActionStream * , U32 ,U32, I8 [2]);
//Chad intra GOB
extern BOOL IsIntraCoded( T_H263EncoderCatalog *, U32);
extern U32 H263RTP_GetMaxBsInfoStreamSize(T_H263EncoderCatalog *EC);
#endif