buffer.c
上传用户:biaoge6808
上传日期:2007-08-15
资源大小:42k
文件大小:1k
源码类别:

多媒体

开发平台:

C/C++

  1. #ifdef __cplusplus
  2. extern "C" {
  3. #endif
  4. /*
  5. NOTICE:
  6. This document contains information that is proprietary to RADVISION LTD..
  7. No part of this publication may be reproduced in any form whatsoever without
  8. written prior approval by RADVISION LTD..
  9. RADVISION LTD. reserves the right to revise this publication and make changes
  10. without obligation to notify any person of such revisions or changes.
  11. */
  12. #include <rvcommon.h>
  13. #include "buffer.h"
  14. BOOL buffAddToBuffer(BUFFER* to, BUFFER* from, UINT32 offset)
  15. {
  16.     if (from->length + offset <= to->length)
  17.     {
  18.         memcpy((UINT8*)to->buffer + offset, from->buffer, from->length);
  19.         return TRUE;
  20.     }
  21.     return FALSE;
  22. }
  23. BOOL buffValid(BUFFER *buff, UINT32 size)
  24. {
  25.     return (size <= buff->length  &&  buff->buffer);
  26. }
  27. BUFFER  buffCreate(void* data,int size)
  28. {
  29.     BUFFER buff;
  30.     buff.buffer = (unsigned char*)data;
  31.     buff.length = size;
  32.     return buff;
  33. }
  34. #ifdef __cplusplus
  35. }
  36. #endif