tsdecrypt reads and decrypts CSA encrypted incoming mpeg transport stream over UDP/RTP using code words obtained from OSCAM or similar CAM server. tsdecrypt communicates with CAM server using cs378x (camd35 over tcp) protocol or newcamd protocol. https://georgi.unixsol.org/programs/tsdecrypt/
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.

bitstream.h 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * TS bitstream functions
  3. * The following functions are copied from bitstream/mpeg.ts and bitstream/mpeg/pes.h
  4. * Copyright (c) 2010-2011 VideoLAN
  5. * Permission is hereby granted, free of charge, to any person obtaining
  6. * a copy of this software and associated documentation files (the
  7. * "Software"), to deal in the Software without restriction, including
  8. * without limitation the rights to use, copy, modify, merge, publish,
  9. * distribute, sublicense, and/or sell copies of the Software, and to
  10. * permit persons to whom the Software is furnished to do so, subject
  11. * to the following conditions:
  12. * The above copyright notice and this permission notice shall be
  13. * included in all copies or substantial portions of the Software.
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  15. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  16. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  17. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  18. * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  19. * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  20. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  21. */
  22. #ifndef BITSTREAM_H
  23. #define BITSTREAM_H
  24. #include <stdbool.h>
  25. #include <inttypes.h>
  26. #define TS_SIZE 188
  27. #define TS_HEADER_SIZE 4
  28. #define PES_HEADER_SIZE_PTS 14
  29. #define PES_HEADER_SIZE_PTSDTS 19
  30. #define PES_STREAM_ID_MIN 0xbc
  31. #define PES_STREAM_ID_PRIVATE_2 0xbf
  32. static inline bool ts_validate(const uint8_t *p_ts)
  33. {
  34. return p_ts[0] == 0x47;
  35. }
  36. static inline bool ts_get_unitstart(const uint8_t *p_ts)
  37. {
  38. return !!(p_ts[1] & 0x40);
  39. }
  40. static inline bool ts_has_payload(const uint8_t *p_ts)
  41. {
  42. return !!(p_ts[3] & 0x10);
  43. }
  44. static inline bool ts_has_adaptation(const uint8_t *p_ts)
  45. {
  46. return !!(p_ts[3] & 0x20);
  47. }
  48. static inline uint8_t ts_get_adaptation(const uint8_t *p_ts)
  49. {
  50. return p_ts[4];
  51. }
  52. static inline uint8_t pes_get_streamid(const uint8_t *p_pes)
  53. {
  54. return p_pes[3];
  55. }
  56. static inline bool pes_validate(const uint8_t *p_pes)
  57. {
  58. return (p_pes[0] == 0x0 && p_pes[1] == 0x0 && p_pes[2] == 0x1
  59. && p_pes[3] >= PES_STREAM_ID_MIN);
  60. }
  61. static inline bool pes_validate_header(const uint8_t *p_pes)
  62. {
  63. return ((p_pes[6] & 0xc0) == 0x80);
  64. }
  65. static inline bool pes_has_pts(const uint8_t *p_pes)
  66. {
  67. return !!(p_pes[7] & 0x80);
  68. }
  69. static inline bool pes_has_dts(const uint8_t *p_pes)
  70. {
  71. return (p_pes[7] & 0xc0) == 0xc0;
  72. }
  73. static inline bool pes_validate_pts(const uint8_t *p_pes)
  74. {
  75. return ((p_pes[9] & 0xe1) == 0x21)
  76. && (p_pes[11] & 0x1) && (p_pes[13] & 0x1);
  77. }
  78. static inline bool pes_validate_dts(const uint8_t *p_pes)
  79. {
  80. return (p_pes[9] & 0x10) && ((p_pes[14] & 0xf1) == 0x11)
  81. && (p_pes[16] & 0x1) && (p_pes[18] & 0x1);
  82. }
  83. #endif