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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SMPEG - SDL MPEG Player Library
  3.     Copyright (C) 1999  Loki Entertainment Software
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. */
  16. /* MPEG filters */
  17. #ifndef _MPEGFILTER_H_
  18. #define _MPEGFILTER_H_
  19. /* SMPEG filter info flags */
  20. #define SMPEG_FILTER_INFO_MB_ERROR    1
  21. #define SMPEG_FILTER_INFO_PIXEL_ERROR 2
  22. /* Filter info from SMPEG */
  23. typedef struct SMPEG_FilterInfo {
  24.   Uint16* yuv_mb_square_error;
  25.   Uint16* yuv_pixel_square_error;
  26. } SMPEG_FilterInfo;
  27. /* MPEG filter definition */
  28. struct SMPEG_Filter;
  29. /* Callback functions for the filter */
  30. typedef void (* SMPEG_FilterCallback)( SDL_Overlay * dest, SDL_Overlay * source, SDL_Rect * region, SMPEG_FilterInfo * filter_info, void * data );
  31. typedef void (* SMPEG_FilterDestroy)( struct SMPEG_Filter * filter );
  32. /* The filter definition itself */
  33. typedef struct SMPEG_Filter {
  34.   Uint32 flags;
  35.   void * data;
  36.   SMPEG_FilterCallback callback;
  37.   SMPEG_FilterDestroy destroy;
  38. } SMPEG_Filter;
  39. /* SMPEG built-in filters. */
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. /* The null filter (default). It simply copies the source rectangle to the video overlay. */ 
  44. extern DECLSPEC SMPEG_Filter * SMPEGfilter_null(void);
  45. /* The bilinear filter. A basic low-pass filter that will produce a smoother image. */ 
  46. extern DECLSPEC SMPEG_Filter * SMPEGfilter_bilinear(void);
  47. /* The deblocking filter. It filters block borders and non-intra coded blocks to reduce blockiness */ 
  48. extern DECLSPEC SMPEG_Filter * SMPEGfilter_deblocking(void);
  49. #ifdef __cplusplus
  50. };
  51. #endif
  52. #endif /* _MPEGFILTER_H_ */