output.h 829 B

123456789101112131415161718192021222324252627
  1. /*!
  2. **************************************************************************************
  3. * \file
  4. * output.h
  5. * \brief
  6. * Picture writing routine headers
  7. * \author
  8. * Main contributors (see contributors.h for copyright, address and affiliation details)
  9. * - Karsten Suehring <[email protected]>
  10. ***************************************************************************************
  11. */
  12. #ifndef _OUTPUT_H_
  13. #define _OUTPUT_H_
  14. extern void write_stored_frame(VideoParameters *p_Vid, FrameStore *fs);
  15. extern void direct_output (VideoParameters *p_Vid, StorablePicture *p);
  16. extern void init_out_buffer (VideoParameters *p_Vid);
  17. extern void uninit_out_buffer (VideoParameters *p_Vid);
  18. #if (PAIR_FIELDS_IN_OUTPUT)
  19. extern void flush_pending_output(VideoParameters *p_Vid);
  20. #endif
  21. #endif //_OUTPUT_H_