comparison ipmovie.c @ 3973:549a09cf23fe libavformat

Remove offset_t typedef and use int64_t directly instead. The name offset_t is easily confused with the standard off_t type and *_t is POSIX reserved namespace if any POSIX header is included.
author diego
date Fri, 03 Oct 2008 10:16:29 +0000
parents 1d3d17de20ba
children e51ace85da6c
comparison
equal deleted inserted replaced
3972:c7a831579a13 3973:549a09cf23fe
105 unsigned int audio_frame_count; 105 unsigned int audio_frame_count;
106 106
107 int video_stream_index; 107 int video_stream_index;
108 int audio_stream_index; 108 int audio_stream_index;
109 109
110 offset_t audio_chunk_offset; 110 int64_t audio_chunk_offset;
111 int audio_chunk_size; 111 int audio_chunk_size;
112 offset_t video_chunk_offset; 112 int64_t video_chunk_offset;
113 int video_chunk_size; 113 int video_chunk_size;
114 offset_t decode_map_chunk_offset; 114 int64_t decode_map_chunk_offset;
115 int decode_map_chunk_size; 115 int decode_map_chunk_size;
116 116
117 offset_t next_chunk_offset; 117 int64_t next_chunk_offset;
118 118
119 AVPaletteControl palette_control; 119 AVPaletteControl palette_control;
120 120
121 } IPMVEContext; 121 } IPMVEContext;
122 122