You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.3KB

  1. /*
  2. * Realmedia RTSP (RDT) definitions
  3. * Copyright (c) 2007 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg 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. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #ifndef AVFORMAT_RDT_H
  22. #define AVFORMAT_RDT_H
  23. /**
  24. * Calculate the response (RealChallenge2 in the RTSP header) to the
  25. * challenge (RealChallenge1 in the RTSP header from the Real/Helix
  26. * server), which is used as some sort of client validation.
  27. *
  28. * @param response pointer to response buffer, it should be at least 41 bytes
  29. * (40 data + 1 zero) bytes long.
  30. * @param chksum pointer to buffer containing a checksum of the response,
  31. * it should be at least 9 (8 data + 1 zero) bytes long.
  32. * @param challenge pointer to the RealChallenge1 value provided by the
  33. * server.
  34. */
  35. void ff_rdt_calc_response_and_checksum(char response[41], char chksum[9],
  36. const char *challenge);
  37. /**
  38. * Register RDT-related dynamic payload handlers with our cache.
  39. */
  40. void av_register_rdt_dynamic_payload_handlers(void);
  41. /**
  42. * Add subscription information to Subscribe parameter string.
  43. *
  44. * @param s RDT context
  45. * @param cmd string to write the subscription information into.
  46. * @param size size of cmd.
  47. * @param stream_nr stream number.
  48. * @param rule_nr rule number to conform to.
  49. */
  50. void ff_rdt_subscribe_rule(RTPDemuxContext *s, char *cmd, int size,
  51. int stream_nr, int rule_nr);
  52. /**
  53. * Parse RDT-style packet data (header + media data).
  54. * Usage similar to rtp_parse_packet().
  55. */
  56. int ff_rdt_parse_packet(RTPDemuxContext *s, AVPacket *pkt,
  57. const uint8_t *buf, int len);
  58. #endif /* AVFORMAT_RDT_H */