gstdspmp4venc.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (C) 2009 Felipe Contreras
  3. *
  4. * Author: Felipe Contreras <felipe.contreras@gmail.com>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation
  9. * version 2.1 of the License.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. *
  20. */
  21. #ifndef GST_DSP_MP4VENC_H
  22. #define GST_DSP_MP4VENC_H
  23. #include <gst/gst.h>
  24. G_BEGIN_DECLS
  25. #define GST_DSP_MP4VENC(obj) (GstDspMp4VEnc *)(obj)
  26. #define GST_DSP_MP4VENC_TYPE (gst_dsp_mp4venc_get_type())
  27. #define GST_DSP_MP4VENC_CLASS(obj) (GstDspMp4VEncClass *)(obj)
  28. typedef struct GstDspMp4VEnc GstDspMp4VEnc;
  29. typedef struct GstDspMp4VEncClass GstDspMp4VEncClass;
  30. #include "gstdspvenc.h"
  31. struct GstDspMp4VEnc {
  32. GstDspVEnc element;
  33. };
  34. struct GstDspMp4VEncClass {
  35. GstDspVEncClass parent_class;
  36. };
  37. GType gst_dsp_mp4venc_get_type(void);
  38. G_END_DECLS
  39. #endif /* GST_DSP_MP4VENC_H */