Changeset f7e4f2966af46e183f179121fe55bc77ac8f2b1c
- Timestamp:
- 20/07/07 19:19:17
(1 year ago)
- Author:
- Christophe Mutricy <xtophe@videolan.org>
- git-committer:
- Christophe Mutricy <xtophe@videolan.org> 1184951957 +0000
- git-parent:
[2aaa1abe714a208f9a6c4721634e5ede312ef6d2]
- git-author:
- Christophe Mutricy <xtophe@videolan.org> 1184951957 +0000
- Message:
Fix some const.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc4ec3b9 |
rf7e4f29 |
|
| 1445 | 1445 | matroska_stream_c *p_stream; |
|---|
| 1446 | 1446 | matroska_segment_c *p_segment; |
|---|
| 1447 | | uint8_t *p_peek; |
|---|
| 1448 | | std::string s_path, s_filename; |
|---|
| | 1447 | const uint8_t *p_peek; |
|---|
| | 1448 | std::string s_path, s_filename; |
|---|
| 1449 | 1449 | vlc_stream_io_callback *p_io_callback; |
|---|
| 1450 | 1450 | EbmlStream *p_io_stream; |
|---|
| … | … | |
| 1545 | 1545 | { |
|---|
| 1546 | 1546 | // test wether this file belongs to our family |
|---|
| 1547 | | uint8_t *p_peek; |
|---|
| 1548 | | bool file_ok = false; |
|---|
| 1549 | | stream_t *p_file_stream = stream_UrlNew( p_demux, s_filename.c_str()); |
|---|
| | 1547 | const uint8_t *p_peek; |
|---|
| | 1548 | bool file_ok = false; |
|---|
| | 1549 | stream_t *p_file_stream = stream_UrlNew( |
|---|
| | 1550 | p_demux, |
|---|
| | 1551 | s_filename.c_str()); |
|---|
| 1550 | 1552 | /* peek the begining */ |
|---|
| 1551 | 1553 | if( p_file_stream && |
|---|
| rb48f3de |
rf7e4f29 |
|
| 269 | 269 | demux_sys_t *p_sys; |
|---|
| 270 | 270 | |
|---|
| 271 | | uint8_t *p_peek; |
|---|
| | 271 | const uint8_t *p_peek; |
|---|
| 272 | 272 | |
|---|
| 273 | 273 | MP4_Box_t *p_ftyp; |
|---|