file_utils.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is MPEG4IP.
  13.  * 
  14.  * The Initial Developer of the Original Code is Cisco Systems Inc.
  15.  * Portions created by Cisco Systems Inc. are
  16.  * Copyright (C) Cisco Systems Inc. 2000-2002.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  *  Bill May        wmay@cisco.com
  20.  *  Dave Mackie  dmackie@cisco.com
  21.  */
  22. #ifndef __FILE_UTILS_INCLUDED__
  23. #define __FILE_UTILS_INCLUDED__
  24. GtkWidget* CreateFileCombo(char* entryText);
  25. void FileBrowser(
  26. GtkWidget* fileEntry, 
  27. GtkSignalFunc okFunc = (GtkSignalFunc)NULL);
  28. GtkWidget* CreateTrackMenu(
  29. GtkWidget* menu,
  30. char type, 
  31. char* source,
  32. u_int32_t* pMenuIndex,
  33. u_int32_t* pMenuNumber,
  34. u_int32_t** ppMenuValues);
  35. bool IsDevice(const char* name);
  36. bool IsUrl(const char* name);
  37. bool IsMp4File(const char* name);
  38. bool IsMpeg2File(const char* name);
  39. int32_t FileDefaultAudio(char* fileName);
  40. #endif /* __FILE_UTILS_INCLUDED__ */