gstaudiovisualizer.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /* GStreamer
  2. * Copyright (C) <2011> Stefan Kost <ensonic@users.sf.net>
  3. * Copyright (C) <2015> Luis de Bethencourt <luis@debethencourt.com>
  4. *
  5. * gstaudiovisualizer.c: base class for audio visualisation elements
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Library General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Library General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Library General Public
  18. * License along with this library; if not, write to the
  19. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  20. * Boston, MA 02110-1301, USA.
  21. */
  22. #ifndef __GST_AUDIO_VISUALIZER_H__
  23. #define __GST_AUDIO_VISUALIZER_H__
  24. #include <gst/gst.h>
  25. #include <gst/base/gstbasetransform.h>
  26. #include <gst/video/video.h>
  27. #include <gst/audio/audio.h>
  28. #include <gst/base/gstadapter.h>
  29. G_BEGIN_DECLS
  30. #define GST_TYPE_AUDIO_VISUALIZER (gst_audio_visualizer_get_type())
  31. #define GST_AUDIO_VISUALIZER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_AUDIO_VISUALIZER,GstAudioVisualizer))
  32. #define GST_AUDIO_VISUALIZER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_AUDIO_VISUALIZER,GstAudioVisualizerClass))
  33. #define GST_AUDIO_VISUALIZER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_AUDIO_VISUALIZER,GstAudioVisualizerClass))
  34. #define GST_IS_SYNAESTHESIA(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_AUDIO_VISUALIZER))
  35. #define GST_IS_SYNAESTHESIA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_AUDIO_VISUALIZER))
  36. typedef struct _GstAudioVisualizer GstAudioVisualizer;
  37. typedef struct _GstAudioVisualizerClass GstAudioVisualizerClass;
  38. typedef struct _GstAudioVisualizerPrivate GstAudioVisualizerPrivate;
  39. typedef void (*GstAudioVisualizerShaderFunc)(GstAudioVisualizer *scope, const GstVideoFrame *s, GstVideoFrame *d);
  40. /**
  41. * GstAudioVisualizerShader:
  42. * @GST_AUDIO_VISUALIZER_SHADER_NONE: no shading
  43. * @GST_AUDIO_VISUALIZER_SHADER_FADE: plain fading
  44. * @GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_UP: fade and move up
  45. * @GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_DOWN: fade and move down
  46. * @GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_LEFT: fade and move left
  47. * @GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_RIGHT: fade and move right
  48. * @GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_HORIZ_OUT: fade and move horizontally out
  49. * @GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_HORIZ_IN: fade and move horizontally in
  50. * @GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_VERT_OUT: fade and move vertically out
  51. * @GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_VERT_IN: fade and move vertically in
  52. *
  53. * Different types of supported background shading functions.
  54. */
  55. typedef enum {
  56. GST_AUDIO_VISUALIZER_SHADER_NONE,
  57. GST_AUDIO_VISUALIZER_SHADER_FADE,
  58. GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_UP,
  59. GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_DOWN,
  60. GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_LEFT,
  61. GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_RIGHT,
  62. GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_HORIZ_OUT,
  63. GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_HORIZ_IN,
  64. GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_VERT_OUT,
  65. GST_AUDIO_VISUALIZER_SHADER_FADE_AND_MOVE_VERT_IN
  66. } GstAudioVisualizerShader;
  67. struct _GstAudioVisualizer
  68. {
  69. GstElement parent;
  70. guint req_spf; /* min samples per frame wanted by the subclass */
  71. /* video state */
  72. GstVideoInfo vinfo;
  73. /* audio state */
  74. GstAudioInfo ainfo;
  75. /* <private> */
  76. GstAudioVisualizerPrivate *priv;
  77. };
  78. struct _GstAudioVisualizerClass
  79. {
  80. GstElementClass parent_class;
  81. /* virtual function, called whenever the format changes */
  82. gboolean (*setup) (GstAudioVisualizer * scope);
  83. /* virtual function for rendering a frame */
  84. gboolean (*render) (GstAudioVisualizer * scope, GstBuffer * audio, GstVideoFrame * video);
  85. gboolean (*decide_allocation) (GstAudioVisualizer * scope, GstQuery *query);
  86. };
  87. GType gst_audio_visualizer_get_type (void);
  88. G_END_DECLS
  89. #endif /* __GST_AUDIO_VISUALIZER_H__ */