gstrtpdefs.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* GStreamer
  2. * Copyright (C) <2005> Philippe Khalaf <burger@speedy.org>
  3. * <2005> Wim Taymans <wim@fluendo.com>
  4. *
  5. * gstrtpbuffer.h: various helper functions to manipulate buffers
  6. * with RTP payload.
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Library General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2 of the License, or (at your option) any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Library General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Library General Public
  19. * License along with this library; if not, write to the
  20. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  21. * Boston, MA 02110-1301, USA.
  22. */
  23. #ifndef __GST_RTPDEFS_H__
  24. #define __GST_RTPDEFS_H__
  25. #include <gst/gst.h>
  26. /**
  27. * GstRTPProfile:
  28. * @GST_RTP_PROFILE_UNKNOWN: invalid profile
  29. * @GST_RTP_PROFILE_AVP: the Audio/Visual profile (RFC 3551)
  30. * @GST_RTP_PROFILE_SAVP: the secure Audio/Visual profile (RFC 3711)
  31. * @GST_RTP_PROFILE_AVPF: the Audio/Visual profile with feedback (RFC 4585)
  32. * @GST_RTP_PROFILE_SAVPF: the secure Audio/Visual profile with feedback (RFC 5124)
  33. *
  34. * The transfer profile to use.
  35. *
  36. * Since: 1.6
  37. */
  38. typedef enum {
  39. GST_RTP_PROFILE_UNKNOWN = 0,
  40. GST_RTP_PROFILE_AVP,
  41. GST_RTP_PROFILE_SAVP,
  42. GST_RTP_PROFILE_AVPF,
  43. GST_RTP_PROFILE_SAVPF
  44. } GstRTPProfile;
  45. #endif /* __GST_RTPDEFS_H__ */