mp4decdrv.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*------------------------------------------------------------------------------
  2. -- --
  3. -- This software is confidential and proprietary and may be used --
  4. -- only as expressly authorized by a licensing agreement from --
  5. -- --
  6. -- Hantro Products Oy. --
  7. -- --
  8. -- (C) COPYRIGHT 2006 HANTRO PRODUCTS OY --
  9. -- ALL RIGHTS RESERVED --
  10. -- --
  11. -- The entire notice above must be reproduced --
  12. -- on all copies and should not be removed. --
  13. -- --
  14. --------------------------------------------------------------------------------
  15. --
  16. -- Description :
  17. --
  18. --------------------------------------------------------------------------------
  19. --
  20. -- Version control information, please leave untouched.
  21. --
  22. -- $RCSfile: mp4decdrv.h,v $
  23. -- $Revision: 1.2 $
  24. -- $Date: 2007/06/05 12:48:06 $
  25. --
  26. ------------------------------------------------------------------------------*/
  27. #ifndef MP4REGDRV_H
  28. #define MP4REGDRV_H
  29. /*------------------------------------------------------------------------------
  30. Include headers
  31. ------------------------------------------------------------------------------*/
  32. #include "basetype.h"
  33. #include "regdrv.h"
  34. /*------------------------------------------------------------------------------
  35. Module defines
  36. ------------------------------------------------------------------------------*/
  37. #define MP4_DEC_X170_MODE_MPEG4 1
  38. #define MP4_DEC_X170_IRQ_DEC_RDY 0x01
  39. #define MP4_DEC_X170_IRQ_BUS_ERROR 0x02
  40. #define MP4_DEC_X170_IRQ_BUFFER_EMPTY 0x04
  41. #define MP4_DEC_X170_IRQ_ASO 0x08
  42. #define MP4_DEC_X170_IRQ_STREAM_ERROR 0x10
  43. #define MP4_DEC_X170_IRQ_TIMEOUT 0x40
  44. #define MP4_DEC_X170_IRQ_CLEAR_ALL 0xFF
  45. #endif /* #ifndef MP4REGDRV_H */