Changeset e22cc82c09592b711c497b0c6c2036cbf9596106
- Timestamp:
- 22/07/08 00:25:48
(4 months ago)
- Author:
- Laurent Aimar <fenrir@videolan.org>
- git-committer:
- Laurent Aimar <fenrir@videolan.org> 1216679148 +0200
- git-parent:
[171934abd5615437ea05522e727e8c77bf1b07c8]
- git-author:
- Laurent Aimar <fenrir@videolan.org> 1216675073 +0200
- Message:
Added a missing const qualifier.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3ccefd7 |
re22cc82 |
|
| 144 | 144 | |
|---|
| 145 | 145 | static int HeaderRead( demux_t *p_demux ); |
|---|
| 146 | | static uint8_t * MetaRead( demux_t *p_demux, const uint8_t *p_peek ); |
|---|
| | 146 | static const uint8_t * MetaRead( demux_t *p_demux, const uint8_t *p_peek ); |
|---|
| 147 | 147 | static int ReadCodecSpecificData( demux_t *p_demux, int i_len, int i_num ); |
|---|
| 148 | 148 | |
|---|
| … | … | |
| 1186 | 1186 | } |
|---|
| 1187 | 1187 | |
|---|
| 1188 | | static uint8_t * MetaRead( demux_t *p_demux, const uint8_t *p_peek ) |
|---|
| | 1188 | static const uint8_t * MetaRead( demux_t *p_demux, const uint8_t *p_peek ) |
|---|
| 1189 | 1189 | { |
|---|
| 1190 | 1190 | demux_sys_t *p_sys = p_demux->p_sys; |
|---|