real.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:22k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * real.c: real rtsp input
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2004 the xine project
  5.  * Copyright (C) 2005 VideoLAN
  6.  * $Id: c74bdf427858c70216e4fc089aa793286f2a13c4 $
  7.  *
  8.  * Authors: Gildas Bazin <gbazin@videolan.org>
  9.  *          Adapted from xine which itself adapted it from joschkas real tools.
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. #ifdef HAVE_CONFIG_H
  26. # include "config.h"
  27. #endif
  28. #include <vlc_common.h>
  29. #include "rtsp.h"
  30. #include "real.h"
  31. #include "real_sdpplin.h"
  32. #define XOR_TABLE_LEN 37
  33. static const unsigned char xor_table[] = {
  34.     0x05, 0x18, 0x74, 0xd0, 0x0d, 0x09, 0x02, 0x53,
  35.     0xc0, 0x01, 0x05, 0x05, 0x67, 0x03, 0x19, 0x70,
  36.     0x08, 0x27, 0x66, 0x10, 0x10, 0x72, 0x08, 0x09,
  37.     0x63, 0x11, 0x03, 0x71, 0x08, 0x08, 0x70, 0x02,
  38.     0x10, 0x57, 0x05, 0x18, 0x54, 0x00, 0x00, 0x00 };
  39. #define BE_32(x) GetDWBE(x)
  40. #define LE_32(x) GetDWLE(x)
  41. #define BE_16(x) GetWBE(x)
  42. #define LE_16(x) GetWLE(x)
  43. #define BE_32C(x,y) do {uint32_t in=y; *(uint32_t *)(x)=GetDWBE(&in);} while(0)
  44. #define LE_32C(x,y) do {uint32_t in=y; *(uint32_t *)(x)=GetDWLE(&in);} while(0)
  45. #define MAX(x,y) ((x>y) ? x : y)
  46. static void hash(char *field, char *param)
  47. {
  48.   uint32_t a, b, c, d;
  49.   /* fill variables */
  50.   a = LE_32(field);
  51.   b = LE_32(field+4);
  52.   c = LE_32(field+8);
  53.   d = LE_32(field+12);
  54.   lprintf("hash input: %x %x %x %xn", a, b, c, d);
  55.   lprintf("hash parameter:n");
  56.   a = ((b & c) | (~b & d)) + LE_32((param+0x00)) + a - 0x28955B88;
  57.   a = ((a << 0x07) | (a >> 0x19)) + b;
  58.   d = ((a & b) | (~a & c)) + LE_32((param+0x04)) + d - 0x173848AA;
  59.   d = ((d << 0x0c) | (d >> 0x14)) + a;
  60.   c = ((d & a) | (~d & b)) + LE_32((param+0x08)) + c + 0x242070DB;
  61.   c = ((c << 0x11) | (c >> 0x0f)) + d;
  62.   b = ((c & d) | (~c & a)) + LE_32((param+0x0c)) + b - 0x3E423112;
  63.   b = ((b << 0x16) | (b >> 0x0a)) + c;
  64.   a = ((b & c) | (~b & d)) + LE_32((param+0x10)) + a - 0x0A83F051;
  65.   a = ((a << 0x07) | (a >> 0x19)) + b;
  66.   d = ((a & b) | (~a & c)) + LE_32((param+0x14)) + d + 0x4787C62A;
  67.   d = ((d << 0x0c) | (d >> 0x14)) + a;
  68.   c = ((d & a) | (~d & b)) + LE_32((param+0x18)) + c - 0x57CFB9ED;
  69.   c = ((c << 0x11) | (c >> 0x0f)) + d;
  70.   b = ((c & d) | (~c & a)) + LE_32((param+0x1c)) + b - 0x02B96AFF;
  71.   b = ((b << 0x16) | (b >> 0x0a)) + c;
  72.   a = ((b & c) | (~b & d)) + LE_32((param+0x20)) + a + 0x698098D8;
  73.   a = ((a << 0x07) | (a >> 0x19)) + b;
  74.   d = ((a & b) | (~a & c)) + LE_32((param+0x24)) + d - 0x74BB0851;
  75.   d = ((d << 0x0c) | (d >> 0x14)) + a;
  76.   c = ((d & a) | (~d & b)) + LE_32((param+0x28)) + c - 0x0000A44F;
  77.   c = ((c << 0x11) | (c >> 0x0f)) + d;
  78.   b = ((c & d) | (~c & a)) + LE_32((param+0x2C)) + b - 0x76A32842;
  79.   b = ((b << 0x16) | (b >> 0x0a)) + c;
  80.   a = ((b & c) | (~b & d)) + LE_32((param+0x30)) + a + 0x6B901122;
  81.   a = ((a << 0x07) | (a >> 0x19)) + b;
  82.   d = ((a & b) | (~a & c)) + LE_32((param+0x34)) + d - 0x02678E6D;
  83.   d = ((d << 0x0c) | (d >> 0x14)) + a;
  84.   c = ((d & a) | (~d & b)) + LE_32((param+0x38)) + c - 0x5986BC72;
  85.   c = ((c << 0x11) | (c >> 0x0f)) + d;
  86.   b = ((c & d) | (~c & a)) + LE_32((param+0x3c)) + b + 0x49B40821;
  87.   b = ((b << 0x16) | (b >> 0x0a)) + c;
  88.   a = ((b & d) | (~d & c)) + LE_32((param+0x04)) + a - 0x09E1DA9E;
  89.   a = ((a << 0x05) | (a >> 0x1b)) + b;
  90.   d = ((a & c) | (~c & b)) + LE_32((param+0x18)) + d - 0x3FBF4CC0;
  91.   d = ((d << 0x09) | (d >> 0x17)) + a;
  92.   c = ((d & b) | (~b & a)) + LE_32((param+0x2c)) + c + 0x265E5A51;
  93.   c = ((c << 0x0e) | (c >> 0x12)) + d;
  94.   b = ((c & a) | (~a & d)) + LE_32((param+0x00)) + b - 0x16493856;
  95.   b = ((b << 0x14) | (b >> 0x0c)) + c;
  96.   a = ((b & d) | (~d & c)) + LE_32((param+0x14)) + a - 0x29D0EFA3;
  97.   a = ((a << 0x05) | (a >> 0x1b)) + b;
  98.   d = ((a & c) | (~c & b)) + LE_32((param+0x28)) + d + 0x02441453;
  99.   d = ((d << 0x09) | (d >> 0x17)) + a;
  100.   c = ((d & b) | (~b & a)) + LE_32((param+0x3c)) + c - 0x275E197F;
  101.   c = ((c << 0x0e) | (c >> 0x12)) + d;
  102.   b = ((c & a) | (~a & d)) + LE_32((param+0x10)) + b - 0x182C0438;
  103.   b = ((b << 0x14) | (b >> 0x0c)) + c;
  104.   a = ((b & d) | (~d & c)) + LE_32((param+0x24)) + a + 0x21E1CDE6;
  105.   a = ((a << 0x05) | (a >> 0x1b)) + b;
  106.   d = ((a & c) | (~c & b)) + LE_32((param+0x38)) + d - 0x3CC8F82A;
  107.   d = ((d << 0x09) | (d >> 0x17)) + a;
  108.   c = ((d & b) | (~b & a)) + LE_32((param+0x0c)) + c - 0x0B2AF279;
  109.   c = ((c << 0x0e) | (c >> 0x12)) + d;
  110.   b = ((c & a) | (~a & d)) + LE_32((param+0x20)) + b + 0x455A14ED;
  111.   b = ((b << 0x14) | (b >> 0x0c)) + c;
  112.   a = ((b & d) | (~d & c)) + LE_32((param+0x34)) + a - 0x561C16FB;
  113.   a = ((a << 0x05) | (a >> 0x1b)) + b;
  114.   d = ((a & c) | (~c & b)) + LE_32((param+0x08)) + d - 0x03105C08;
  115.   d = ((d << 0x09) | (d >> 0x17)) + a;
  116.   c = ((d & b) | (~b & a)) + LE_32((param+0x1c)) + c + 0x676F02D9;
  117.   c = ((c << 0x0e) | (c >> 0x12)) + d;
  118.   b = ((c & a) | (~a & d)) + LE_32((param+0x30)) + b - 0x72D5B376;
  119.   b = ((b << 0x14) | (b >> 0x0c)) + c;
  120.   a = (b ^ c ^ d) + LE_32((param+0x14)) + a - 0x0005C6BE;
  121.   a = ((a << 0x04) | (a >> 0x1c)) + b;
  122.   d = (a ^ b ^ c) + LE_32((param+0x20)) + d - 0x788E097F;
  123.   d = ((d << 0x0b) | (d >> 0x15)) + a;
  124.   c = (d ^ a ^ b) + LE_32((param+0x2c)) + c + 0x6D9D6122;
  125.   c = ((c << 0x10) | (c >> 0x10)) + d;
  126.   b = (c ^ d ^ a) + LE_32((param+0x38)) + b - 0x021AC7F4;
  127.   b = ((b << 0x17) | (b >> 0x09)) + c;
  128.   a = (b ^ c ^ d) + LE_32((param+0x04)) + a - 0x5B4115BC;
  129.   a = ((a << 0x04) | (a >> 0x1c)) + b;
  130.   d = (a ^ b ^ c) + LE_32((param+0x10)) + d + 0x4BDECFA9;
  131.   d = ((d << 0x0b) | (d >> 0x15)) + a;
  132.   c = (d ^ a ^ b) + LE_32((param+0x1c)) + c - 0x0944B4A0;
  133.   c = ((c << 0x10) | (c >> 0x10)) + d;
  134.   b = (c ^ d ^ a) + LE_32((param+0x28)) + b - 0x41404390;
  135.   b = ((b << 0x17) | (b >> 0x09)) + c;
  136.   a = (b ^ c ^ d) + LE_32((param+0x34)) + a + 0x289B7EC6;
  137.   a = ((a << 0x04) | (a >> 0x1c)) + b;
  138.   d = (a ^ b ^ c) + LE_32((param+0x00)) + d - 0x155ED806;
  139.   d = ((d << 0x0b) | (d >> 0x15)) + a;
  140.   c = (d ^ a ^ b) + LE_32((param+0x0c)) + c - 0x2B10CF7B;
  141.   c = ((c << 0x10) | (c >> 0x10)) + d;
  142.   b = (c ^ d ^ a) + LE_32((param+0x18)) + b + 0x04881D05;
  143.   b = ((b << 0x17) | (b >> 0x09)) + c;
  144.   a = (b ^ c ^ d) + LE_32((param+0x24)) + a - 0x262B2FC7;
  145.   a = ((a << 0x04) | (a >> 0x1c)) + b;
  146.   d = (a ^ b ^ c) + LE_32((param+0x30)) + d - 0x1924661B;
  147.   d = ((d << 0x0b) | (d >> 0x15)) + a;
  148.   c = (d ^ a ^ b) + LE_32((param+0x3c)) + c + 0x1fa27cf8;
  149.   c = ((c << 0x10) | (c >> 0x10)) + d;
  150.   b = (c ^ d ^ a) + LE_32((param+0x08)) + b - 0x3B53A99B;
  151.   b = ((b << 0x17) | (b >> 0x09)) + c;
  152.   a = ((~d | b) ^ c)  + LE_32((param+0x00)) + a - 0x0BD6DDBC;
  153.   a = ((a << 0x06) | (a >> 0x1a)) + b;
  154.   d = ((~c | a) ^ b)  + LE_32((param+0x1c)) + d + 0x432AFF97;
  155.   d = ((d << 0x0a) | (d >> 0x16)) + a;
  156.   c = ((~b | d) ^ a)  + LE_32((param+0x38)) + c - 0x546BDC59;
  157.   c = ((c << 0x0f) | (c >> 0x11)) + d;
  158.   b = ((~a | c) ^ d)  + LE_32((param+0x14)) + b - 0x036C5FC7;
  159.   b = ((b << 0x15) | (b >> 0x0b)) + c;
  160.   a = ((~d | b) ^ c)  + LE_32((param+0x30)) + a + 0x655B59C3;
  161.   a = ((a << 0x06) | (a >> 0x1a)) + b;
  162.   d = ((~c | a) ^ b)  + LE_32((param+0x0C)) + d - 0x70F3336E;
  163.   d = ((d << 0x0a) | (d >> 0x16)) + a;
  164.   c = ((~b | d) ^ a)  + LE_32((param+0x28)) + c - 0x00100B83;
  165.   c = ((c << 0x0f) | (c >> 0x11)) + d;
  166.   b = ((~a | c) ^ d)  + LE_32((param+0x04)) + b - 0x7A7BA22F;
  167.   b = ((b << 0x15) | (b >> 0x0b)) + c;
  168.   a = ((~d | b) ^ c)  + LE_32((param+0x20)) + a + 0x6FA87E4F;
  169.   a = ((a << 0x06) | (a >> 0x1a)) + b;
  170.   d = ((~c | a) ^ b)  + LE_32((param+0x3c)) + d - 0x01D31920;
  171.   d = ((d << 0x0a) | (d >> 0x16)) + a;
  172.   c = ((~b | d) ^ a)  + LE_32((param+0x18)) + c - 0x5CFEBCEC;
  173.   c = ((c << 0x0f) | (c >> 0x11)) + d;
  174.   b = ((~a | c) ^ d)  + LE_32((param+0x34)) + b + 0x4E0811A1;
  175.   b = ((b << 0x15) | (b >> 0x0b)) + c;
  176.   a = ((~d | b) ^ c)  + LE_32((param+0x10)) + a - 0x08AC817E;
  177.   a = ((a << 0x06) | (a >> 0x1a)) + b;
  178.   d = ((~c | a) ^ b)  + LE_32((param+0x2c)) + d - 0x42C50DCB;
  179.   d = ((d << 0x0a) | (d >> 0x16)) + a;
  180.   c = ((~b | d) ^ a)  + LE_32((param+0x08)) + c + 0x2AD7D2BB;
  181.   c = ((c << 0x0f) | (c >> 0x11)) + d;
  182.   b = ((~a | c) ^ d)  + LE_32((param+0x24)) + b - 0x14792C6F;
  183.   b = ((b << 0x15) | (b >> 0x0b)) + c;
  184.   lprintf("hash output: %x %x %x %xn", a, b, c, d);
  185.   a += LE_32(field);
  186.   b += LE_32(field+4);
  187.   c += LE_32(field+8);
  188.   d += LE_32(field+12);
  189.   LE_32C(field, a);
  190.   LE_32C(field+4, b);
  191.   LE_32C(field+8, c);
  192.   LE_32C(field+12, d);
  193. }
  194. static void call_hash (char *key, char *challenge, unsigned int len) {
  195.   uint8_t *ptr1, *ptr2;
  196.   uint32_t a, b, c, d, tmp;
  197.   ptr1=(uint8_t*)(key+16);
  198.   ptr2=(uint8_t*)(key+20);
  199.   a = LE_32(ptr1);
  200.   b = (a >> 3) & 0x3f;
  201.   a += len * 8;
  202.   LE_32C(ptr1, a);
  203.   if (a < (len << 3))
  204.   {
  205.     lprintf("not verified: (len << 3) > a truen");
  206.     ptr2 += 4;
  207.   }
  208.   tmp = LE_32(ptr2) + (len >> 0x1d);
  209.   LE_32C(ptr2, tmp);
  210.   a = 64 - b;
  211.   c = 0;
  212.   if (a <= len)
  213.   {
  214.     memcpy(key+b+24, challenge, a);
  215.     hash(key, key+24);
  216.     c = a;
  217.     d = c + 0x3f;
  218.     while ( d < len ) {
  219.       lprintf("not verified:  while ( d < len )n");
  220.       hash(key, challenge+d-0x3f);
  221.       d += 64;
  222.       c += 64;
  223.     }
  224.     b = 0;
  225.   }
  226.   memcpy(key+b+24, challenge+c, len-c);
  227. }
  228. static void calc_response (char *result, char *field) {
  229.   char buf1[128];
  230.   char buf2[128];
  231.   int i;
  232.   memset (buf1, 0, 64);
  233.   *buf1 = 128;
  234.   memcpy (buf2, field+16, 8);
  235.   i = ( LE_32((buf2)) >> 3 ) & 0x3f;
  236.   if (i < 56)
  237.   {
  238.     i = 56 - i;
  239.   } else
  240.   {
  241.     lprintf("not verified: ! (i < 56)n");
  242.     i = 120 - i;
  243.   }
  244.   call_hash (field, buf1, i);
  245.   call_hash (field, buf2, 8);
  246.   memcpy (result, field, 16);
  247. }
  248. static void calc_response_string (char *result, char *challenge) {
  249.   char field[128] = {
  250.     0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF,
  251.     0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10,
  252.     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  253.     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
  254.   };
  255.   char zres[20];
  256.   int  i;
  257.   /* calculate response */
  258.   call_hash(field, challenge, 64);
  259.   calc_response(zres,field);
  260.   /* convert zres to ascii string */
  261.   for (i=0; i<16; i++ ) {
  262.     char a, b;
  263.     a = (zres[i] >> 4) & 15;
  264.     b = zres[i] & 15;
  265.     result[i*2]   = ((a<10) ? (a+48) : (a+87)) & 255;
  266.     result[i*2+1] = ((b<10) ? (b+48) : (b+87)) & 255;
  267.   }
  268. }
  269. void real_calc_response_and_checksum (char *response, char *chksum, char *challenge) {
  270.   int   ch_len, resp_len;
  271.   int   i;
  272.   char *ptr;
  273.   char  buf[128];
  274.   /* initialize return values */
  275.   memset(response, 0, 64);
  276.   memset(chksum, 0, 34);
  277.   /* initialize buffer */
  278.   memset(buf, 0, 128);
  279.   ptr=buf;
  280.   BE_32C(ptr, 0xa1e9149d);
  281.   ptr+=4;
  282.   BE_32C(ptr, 0x0e6b3b59);
  283.   ptr+=4;
  284.   /* some (length) checks */
  285.   if (challenge != NULL)
  286.   {
  287.     ch_len = strlen (challenge);
  288.     if (ch_len == 40) /* what a hack... */
  289.     {
  290.       challenge[32]=0;
  291.       ch_len=32;
  292.     }
  293.     if ( ch_len > 56 ) ch_len=56;
  294.     /* copy challenge to buf */
  295.     memcpy(ptr, challenge, ch_len);
  296.   }
  297.   /* xor challenge bytewise with xor_table */
  298.   for (i=0; i<XOR_TABLE_LEN; i++)
  299.     ptr[i] = ptr[i] ^ xor_table[i];
  300.   calc_response_string (response, buf);
  301.   /* add tail */
  302.   resp_len = strlen (response);
  303.   strcpy (&response[resp_len], "01d0a8e3");
  304.   /* calculate checksum */
  305.   for (i=0; i<resp_len/4; i++)
  306.     chksum[i] = response[i*4];
  307. }
  308. /*
  309.  * takes a MLTI-Chunk and a rule number got from match_asm_rule,
  310.  * returns a pointer to selected data and number of bytes in that.
  311.  */
  312. static int select_mlti_data(const char *mlti_chunk, int mlti_size, int selection, char **out) {
  313.   int numrules, codec, size;
  314.   int i;
  315.   /* MLTI chunk should begin with MLTI */
  316.   if ((mlti_chunk[0] != 'M')
  317.       ||(mlti_chunk[1] != 'L')
  318.       ||(mlti_chunk[2] != 'T')
  319.       ||(mlti_chunk[3] != 'I'))
  320.   {
  321.     lprintf("MLTI tag not detected, copying datan");
  322.     memcpy(*out, mlti_chunk, mlti_size);
  323.     return mlti_size;
  324.   }
  325.   mlti_chunk+=4;
  326.   /* next 16 bits are the number of rules */
  327.   numrules=BE_16(mlti_chunk);
  328.   if (selection >= numrules) return 0;
  329.   /* now <numrules> indices of codecs follows */
  330.   /* we skip to selection                     */
  331.   mlti_chunk+=(selection+1)*2;
  332.   /* get our index */
  333.   codec=BE_16(mlti_chunk);
  334.   /* skip to number of codecs */
  335.   mlti_chunk+=(numrules-selection)*2;
  336.   /* get number of codecs */
  337.   numrules=BE_16(mlti_chunk);
  338.   if (codec >= numrules) {
  339.     lprintf("codec index >= number of codecs. %i %in", codec, numrules);
  340.     return 0;
  341.   }
  342.   mlti_chunk+=2;
  343.   /* now seek to selected codec */
  344.   for (i=0; i<codec; i++) {
  345.     size=BE_32(mlti_chunk);
  346.     mlti_chunk+=size+4;
  347.   }
  348.   size=BE_32(mlti_chunk);
  349.   memcpy(*out, mlti_chunk+4, size);
  350.   return size;
  351. }
  352. /*
  353.  * looking at stream description.
  354.  */
  355. rmff_header_t *real_parse_sdp(char *data, char **stream_rules, uint32_t bandwidth) {
  356.   sdpplin_t *desc = NULL;
  357.   rmff_header_t *header = NULL;
  358.   char *buf = NULL;
  359.   int len, i;
  360.   int max_bit_rate=0;
  361.   int avg_bit_rate=0;
  362.   int max_packet_size=0;
  363.   int avg_packet_size=0;
  364.   int duration=0;
  365.   if( !data ) return NULL;
  366.   desc=sdpplin_parse(data);
  367.   if( !desc ) return NULL;
  368.   buf= (char *)malloc(2048);
  369.   if( !buf ) goto error;
  370.   header = calloc( 1, sizeof(rmff_header_t) );
  371.   if( !header ) goto error;
  372.   header->fileheader=rmff_new_fileheader(4+desc->stream_count);
  373.   header->cont=rmff_new_cont(
  374.       desc->title,
  375.       desc->author,
  376.       desc->copyright,
  377.       desc->abstract);
  378.   header->data=rmff_new_dataheader(0,0);
  379.   if( !header->data ) goto error;
  380.   header->streams = calloc( desc->stream_count+1, sizeof(rmff_mdpr_t*) );
  381.   if( !header->streams ) goto error;
  382.   lprintf("number of streams: %un", desc->stream_count);
  383.   for (i=0; i<desc->stream_count; i++) {
  384.     int j=0;
  385.     int n;
  386.     char b[64];
  387.     int rulematches[16];
  388.     lprintf("calling asmrp_match with:n%sn%un", desc->stream[i]->asm_rule_book, bandwidth);
  389.     n=asmrp_match(desc->stream[i]->asm_rule_book, bandwidth, rulematches, sizeof(rulematches)/sizeof(rulematches[0]));
  390.     for (j=0; j<n; j++) {
  391.       lprintf("asmrp rule match: %u for stream %un", rulematches[j], desc->stream[i]->stream_id);
  392.       sprintf(b,"stream=%u;rule=%u,", desc->stream[i]->stream_id, rulematches[j]);
  393.       strcat(*stream_rules, b);
  394.     }
  395.     if (!desc->stream[i]->mlti_data) {
  396.       len = 0;
  397.       free( buf );
  398.       buf = NULL;
  399.     } else
  400.       len=select_mlti_data(desc->stream[i]->mlti_data,
  401.         desc->stream[i]->mlti_data_size, rulematches[0], &buf);
  402.     header->streams[i]=rmff_new_mdpr(
  403.       desc->stream[i]->stream_id,
  404.         desc->stream[i]->max_bit_rate,
  405.         desc->stream[i]->avg_bit_rate,
  406.         desc->stream[i]->max_packet_size,
  407.         desc->stream[i]->avg_packet_size,
  408.         desc->stream[i]->start_time,
  409.         desc->stream[i]->preroll,
  410.         desc->stream[i]->duration,
  411.         desc->stream[i]->stream_name,
  412.         desc->stream[i]->mime_type,
  413.         len,
  414.         buf);
  415.     if( !header->streams[i] ) goto error;
  416.     duration=MAX(duration,desc->stream[i]->duration);
  417.     max_bit_rate+=desc->stream[i]->max_bit_rate;
  418.     avg_bit_rate+=desc->stream[i]->avg_bit_rate;
  419.     max_packet_size=MAX(max_packet_size, desc->stream[i]->max_packet_size);
  420.     if (avg_packet_size)
  421.       avg_packet_size=(avg_packet_size + desc->stream[i]->avg_packet_size) / 2;
  422.     else
  423.       avg_packet_size=desc->stream[i]->avg_packet_size;
  424.   }
  425.   if (*stream_rules && strlen(*stream_rules) && (*stream_rules)[strlen(*stream_rules)-1] == ',')
  426.       (*stream_rules)[strlen(*stream_rules)-1]=0; /* delete last ',' in stream_rules */
  427.   header->prop=rmff_new_prop(
  428.       max_bit_rate,
  429.       avg_bit_rate,
  430.       max_packet_size,
  431.       avg_packet_size,
  432.       0,
  433.       duration,
  434.       0,
  435.       0,
  436.       0,
  437.       desc->stream_count,
  438.       desc->flags);
  439.   if( !header->prop ) goto error;
  440.   rmff_fix_header(header);
  441.   if( desc ) sdpplin_free( desc );
  442.   free( buf );
  443.   return header;
  444. error:
  445.   if( desc ) sdpplin_free( desc );
  446.   if( header ) rmff_free_header( header );
  447.   free( buf );
  448.   return NULL;
  449. }
  450. int real_get_rdt_chunk_header(rtsp_client_t *rtsp_session, rmff_pheader_t *ph) {
  451.   int n=1;
  452.   uint8_t header[8];
  453.   int size;
  454.   int flags1;
  455.   int unknown1;
  456.   uint32_t ts;
  457.   n=rtsp_read_data(rtsp_session, header, 8);
  458.   if (n<8) return 0;
  459.   if (header[0] != 0x24)
  460.   {
  461.     lprintf("rdt chunk not recognized: got 0x%02xn", header[0]);
  462.     return 0;
  463.   }
  464.   size=(header[1]<<16)+(header[2]<<8)+(header[3]);
  465.   flags1=header[4];
  466.   if ((flags1!=0x40)&&(flags1!=0x42))
  467.   {
  468.     lprintf("got flags1: 0x%02xn",flags1);
  469.     if (header[6]==0x06)
  470.     {
  471.       lprintf("got end of stream packetn");
  472.       return 0;
  473.     }
  474.     header[0]=header[5];
  475.     header[1]=header[6];
  476.     header[2]=header[7];
  477.     n=rtsp_read_data(rtsp_session, header+3, 5);
  478.     if (n<5) return 0;
  479.     lprintf("ignoring bytes:n");
  480.     n=rtsp_read_data(rtsp_session, header+4, 4);
  481.     if (n<4) return 0;
  482.     flags1=header[4];
  483.     size-=9;
  484.   }
  485.   unknown1=(header[5]<<16)+(header[6]<<8)+(header[7]);
  486.   n=rtsp_read_data(rtsp_session, header, 6);
  487.   if (n<6) return 0;
  488.   ts=BE_32(header);
  489. #if 0
  490.   lprintf("ts: %u size: %u, flags: 0x%02x, unknown values: %u 0x%02x 0x%02xn",
  491.           ts, size, flags1, unknown1, header[4], header[5]);
  492. #endif
  493.   size+=2;
  494.   ph->object_version=0;
  495.   ph->length=size;
  496.   ph->stream_number=(flags1>>1)&1;
  497.   ph->timestamp=ts;
  498.   ph->reserved=0;
  499.   ph->flags=0;      /* TODO: determine keyframe flag and insert here? */
  500.   return size;
  501. }
  502. int real_get_rdt_chunk(rtsp_client_t *rtsp_session, rmff_pheader_t *ph,
  503.                        unsigned char **buffer) {
  504.   int n;
  505.   rmff_dump_pheader(ph, (char*)*buffer);
  506.   if (ph->length<12) return 0;
  507.   n=rtsp_read_data(rtsp_session, (uint8_t*)(*buffer + 12), ph->length - 12);
  508.   return (n <= 0) ? 0 : n+12;
  509. }
  510. //! maximum size of the rtsp description, must be < INT_MAX
  511. #define MAX_DESC_BUF (20 * 1024 * 1024)
  512. rmff_header_t  *real_setup_and_get_header(rtsp_client_t *rtsp_session, int bandwidth) {
  513.   char *description=NULL;
  514.   char *session_id=NULL;
  515.   rmff_header_t *h=NULL;
  516.   char *challenge1 = NULL;
  517.   char challenge2[64];
  518.   char checksum[34];
  519.   char *subscribe=NULL;
  520.   char *buf = malloc(256);
  521.   if( !buf )
  522.     return NULL;
  523.   char *mrl=rtsp_get_mrl(rtsp_session);
  524.   unsigned int size;
  525.   int status;
  526.   /* get challenge */
  527.   challenge1=strdup(rtsp_search_answers(rtsp_session,"RealChallenge1"));
  528.   lprintf("Challenge1: %sn", challenge1);
  529.   /* request stream description */
  530.   rtsp_schedule_field(rtsp_session, "Accept: application/sdp");
  531.   sprintf(buf, "Bandwidth: %u", bandwidth);
  532.   rtsp_schedule_field(rtsp_session, buf);
  533.   rtsp_schedule_field(rtsp_session, "GUID: 00000000-0000-0000-0000-000000000000");
  534.   rtsp_schedule_field(rtsp_session, "RegionData: 0");
  535.   rtsp_schedule_field(rtsp_session, "ClientID: Linux_2.4_6.0.9.1235_play32_RN01_EN_586");
  536.   rtsp_schedule_field(rtsp_session, "SupportsMaximumASMBandwidth: 1");
  537.   rtsp_schedule_field(rtsp_session, "Language: en-US");
  538.   rtsp_schedule_field(rtsp_session, "Require: com.real.retain-entity-for-setup");
  539.   status=rtsp_request_describe(rtsp_session,NULL);
  540.   if ( status<200 || status>299 ) {
  541.     char *alert=rtsp_search_answers(rtsp_session,"Alert");
  542.     if (alert) {
  543.         lprintf("real: got message from server:n%sn", alert);
  544.     }
  545.     rtsp_send_ok( rtsp_session );
  546.     free( challenge1 );
  547.     free( alert );
  548.     free( buf );
  549.     return NULL;
  550.   }
  551.   /* receive description */
  552.   size=0;
  553.   if (!rtsp_search_answers(rtsp_session,"Content-length"))
  554.     lprintf("real: got no Content-length!n");
  555.   else
  556.     size=atoi(rtsp_search_answers(rtsp_session,"Content-length"));
  557.   if (size > MAX_DESC_BUF) {
  558.     printf("real: Content-length for description too big (> %uMB)!n",
  559.         MAX_DESC_BUF/(1024*1024) );
  560.     goto error;
  561.   }
  562.   if (!rtsp_search_answers(rtsp_session,"ETag"))
  563.     lprintf("real: got no ETag!n");
  564.   else
  565.     session_id=strdup(rtsp_search_answers(rtsp_session,"ETag"));
  566.   lprintf("Stream description size: %in", size);
  567.   description = malloc(size+1);
  568.   if( !description )
  569.     goto error;
  570.   if( rtsp_read_data(rtsp_session, (uint8_t*)description, size) <= 0)
  571.     goto error;
  572.   description[size]=0;
  573.   //fprintf(stderr, "%s", description);
  574.   /* parse sdp (sdpplin) and create a header and a subscribe string */
  575.   subscribe = malloc(256);
  576.   if( !subscribe )
  577.     goto error;
  578.   strcpy(subscribe, "Subscribe: ");
  579.   h=real_parse_sdp(description, &subscribe, bandwidth);
  580.   if (!h)
  581.     goto error;
  582.   rmff_fix_header(h);
  583. #if 0
  584.   fprintf("Title: %snCopyright: %snAuthor: %snStreams: %in",
  585.       h->cont->title, h->cont->copyright, h->cont->author, h->prop->num_streams);
  586. #endif
  587.   /* setup our streams */
  588.   real_calc_response_and_checksum (challenge2, checksum, challenge1);
  589.   buf = realloc(buf, strlen(challenge2) + strlen(checksum) + 32);
  590.   sprintf(buf, "RealChallenge2: %s, sd=%s", challenge2, checksum);
  591.   rtsp_schedule_field(rtsp_session, buf);
  592.   buf = realloc(buf, strlen(session_id) + 32);
  593.   sprintf(buf, "If-Match: %s", session_id);
  594.   rtsp_schedule_field(rtsp_session, buf);
  595.   rtsp_schedule_field(rtsp_session, "Transport: x-pn-tng/tcp;mode=play,rtp/avp/tcp;unicast;mode=play");
  596.   buf = realloc(buf, strlen(mrl) + 32);
  597.   sprintf(buf, "%s/streamid=0", mrl);
  598.   rtsp_request_setup(rtsp_session,buf);
  599.   if (h->prop->num_streams > 1) {
  600.     rtsp_schedule_field(rtsp_session, "Transport: x-pn-tng/tcp;mode=play,rtp/avp/tcp;unicast;mode=play");
  601.     buf = realloc(buf, strlen(session_id) + 32);
  602.     sprintf(buf, "If-Match: %s", session_id);
  603.     rtsp_schedule_field(rtsp_session, buf);
  604.     buf = realloc(buf, strlen(mrl) + 32);
  605.     sprintf(buf, "%s/streamid=1", mrl);
  606.     rtsp_request_setup(rtsp_session,buf);
  607.   }
  608.   /* set stream parameter (bandwidth) with our subscribe string */
  609.   rtsp_schedule_field(rtsp_session, subscribe);
  610.   rtsp_request_setparameter(rtsp_session,NULL);
  611.   /* and finally send a play request */
  612.   rtsp_schedule_field(rtsp_session, "Range: npt=0-");
  613.   rtsp_request_play(rtsp_session,NULL);
  614.   free( challenge1 );
  615.   free( session_id );
  616.   free( description );
  617.   free( subscribe );
  618.   free( buf );
  619.   return h;
  620. error:
  621.   if( h ) rmff_free_header( h );
  622.   free( challenge1 );
  623.   free( session_id );
  624.   free( description );
  625.   free( subscribe );
  626.   free( buf );
  627.   return NULL;
  628. }