MPEGerror.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. /* A class used for error reporting in the MPEG classes */
  17. #ifndef _MPEGERROR_H_
  18. #define _MPEGERROR_H_
  19. #include <stdio.h>
  20. #include <stdarg.h>
  21. class MPEGerror {
  22. public:
  23.     MPEGerror() {
  24.         ClearError();
  25.     }
  26.     /* Set an error message */
  27.     void SetError(char *fmt, ...) {
  28.         va_list ap;
  29.         va_start(ap, fmt);
  30.         vsprintf(errbuf, fmt, ap);
  31.         va_end(ap);
  32.         error = errbuf;
  33.     }
  34.     /* Find out if an error occurred */
  35.     bool WasError(void) {
  36.         return(error != NULL);
  37.     }
  38.     char *TheError(void) {
  39.         return(error);
  40.     }
  41.     /* Clear any error message */
  42.     void ClearError(void) {
  43.         error = NULL;
  44.     }
  45. protected:
  46.     char errbuf[512];
  47.     char *error;
  48. };
  49. #endif /* _MPEGERROR_H_ */