c64xdec.h 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. /********************************************************************
  2. * *
  3. * THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE. *
  4. * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
  5. * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
  6. * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
  7. * *
  8. * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2007 *
  9. * by the Xiph.Org Foundation and contributors http://www.xiph.org/ *
  10. * *
  11. ********************************************************************
  12. function:
  13. last mod: $Id$
  14. ********************************************************************/
  15. #if !defined(_c64x_c64xdec_H)
  16. # define _c64x_c64xdec_H (1)
  17. # include "c64xint.h"
  18. # if defined(OC_C64X_ASM)
  19. # define oc_dec_accel_init oc_dec_accel_init_c64x
  20. # define oc_dec_dc_unpredict_mcu_plane oc_dec_dc_unpredict_mcu_plane_c64x
  21. # endif
  22. # include "../decint.h"
  23. void oc_dec_accel_init_c64x(oc_dec_ctx *_dec);
  24. void oc_dec_dc_unpredict_mcu_plane_c64x(oc_dec_ctx *_dec,
  25. oc_dec_pipeline_state *_pipe,int _pli);
  26. #endif