Changeset 0ddc9bae3569daa4a2224878b7fd16ec34845f7d
- Timestamp:
- 19/08/07 16:19:32
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1187533172 +0000
- git-parent:
[3eefd337031d8af2d1b41ce869706ad71ac73ac4]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1187533172 +0000
- Message:
Fix [21239] compilation
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rce0c33f |
r0ddc9ba |
|
| 371 | 371 | } |
|---|
| 372 | 372 | |
|---|
| 373 | | var_Get( p_access, SOUT_CFG_PREFIX "caching", &val ); |
|---|
| 374 | | p_sys->p_thread->i_caching = (int64_t)val.i_int * 1000; |
|---|
| 375 | | |
|---|
| 376 | | var_Get( p_access, SOUT_CFG_PREFIX "group", &val ); |
|---|
| 377 | | p_sys->p_thread->i_group = val.i_int; |
|---|
| 378 | | |
|---|
| 379 | | p_sys->i_mtu = var_CreateGetInteger( p_this, "mtu" ); |
|---|
| | 373 | p_sys->p_thread->i_caching = |
|---|
| | 374 | (int64_t)1000 * var_GetInteger( p_access, SOUT_CFG_PREFIX "caching"); |
|---|
| | 375 | p_sys->p_thread->i_group = |
|---|
| | 376 | var_GetInteger( p_access, SOUT_CFG_PREFIX "group" ); |
|---|
| | 377 | |
|---|
| | 378 | p_sys->i_mtu = var_GetInteger( p_this, "mtu" ); |
|---|
| 380 | 379 | |
|---|
| 381 | 380 | srand( (uint32_t)mdate()); |
|---|
| … | … | |
| 403 | 402 | } |
|---|
| 404 | 403 | |
|---|
| 405 | | if (var_GetBool (p_accesss, SOUT_CFG_PREFIX"raw")) |
|---|
| | 404 | if (var_GetBool (p_access, SOUT_CFG_PREFIX"raw")) |
|---|
| 406 | 405 | p_access->pf_write = WriteRaw; |
|---|
| 407 | 406 | else |
|---|