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.

30 lines
1.4KB

  1. /*
  2. * RTSP definitions
  3. * copyright (c) 2002 Fabrice Bellard
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. DEF(200, RTSP_STATUS_OK, "OK")
  20. DEF(405, RTSP_STATUS_METHOD, "Method Not Allowed")
  21. DEF(453, RTSP_STATUS_BANDWIDTH, "Not Enough Bandwidth")
  22. DEF(454, RTSP_STATUS_SESSION, "Session Not Found")
  23. DEF(455, RTSP_STATUS_STATE, "Method Not Valid in This State")
  24. DEF(459, RTSP_STATUS_AGGREGATE, "Aggregate operation not allowed")
  25. DEF(460, RTSP_STATUS_ONLY_AGGREGATE, "Only aggregate operation allowed")
  26. DEF(461, RTSP_STATUS_TRANSPORT, "Unsupported transport")
  27. DEF(500, RTSP_STATUS_INTERNAL, "Internal Server Error")
  28. DEF(503, RTSP_STATUS_SERVICE, "Service Unavailable")
  29. DEF(505, RTSP_STATUS_VERSION, "RTSP Version not supported")