gstdspdummy.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright (C) 2009-2010 Nokia Corporation
  3. *
  4. * Author: Felipe Contreras <felipe.contreras@nokia.com>
  5. *
  6. * This file may be used under the terms of the GNU Lesser General Public
  7. * License version 2.1, a copy of which is found in LICENSE included in the
  8. * packaging of this file.
  9. */
  10. #ifndef GST_DSP_DUMMY_H
  11. #define GST_DSP_DUMMY_H
  12. #include <gst/gst.h>
  13. G_BEGIN_DECLS
  14. #define GST_DSP_DUMMY(obj) (GstDspDummy *) (obj)
  15. #define GST_DSP_DUMMY_TYPE (gst_dsp_dummy_get_type())
  16. #define GST_DSP_DUMMY_CLASS(obj) (GstDspDummyClass *) (obj)
  17. typedef struct _GstDspDummy GstDspDummy;
  18. typedef struct _GstDspDummyClass GstDspDummyClass;
  19. #include "dmm_buffer.h"
  20. struct _GstDspDummy {
  21. GstElement element;
  22. GstPad *sinkpad, *srcpad;
  23. int dsp_handle;
  24. void *proc;
  25. struct dsp_node *node;
  26. dmm_buffer_t *in_buffer, *out_buffer;
  27. struct dsp_notification *events[3];
  28. unsigned dsp_error;
  29. };
  30. struct _GstDspDummyClass {
  31. GstElementClass parent_class;
  32. };
  33. GType gst_dsp_dummy_get_type(void);
  34. G_END_DECLS
  35. #endif /* GST_DSP_DUMMY_H */