gstdspparse.h 612 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (C) 2009 Marco Ballesio
  3. *
  4. * Authors:
  5. * Marco Ballesio <marco.ballesio@gmail.com>
  6. * Felipe Contreras <felipe.contreras@gmail.com>
  7. *
  8. * This file may be used under the terms of the GNU Lesser General Public
  9. * License version 2.1, a copy of which is found in LICENSE included in the
  10. * packaging of this file.
  11. */
  12. #ifndef GST_DSP_PARSE_H
  13. #define GST_DSP_PARSE_H
  14. #include <glib.h>
  15. #include "gstdspbase.h"
  16. bool gst_dsp_h263_parse(GstDspBase *base, GstBuffer *buf);
  17. bool gst_dsp_mpeg4_parse(GstDspBase *base, GstBuffer *buf);
  18. bool gst_dsp_h264_parse(GstDspBase *base, GstBuffer *buf);
  19. #endif