comparison wav.c @ 241:3d92f793fd67 libavformat

64 bit pts for writing - more const usage
author bellard
date Wed, 10 Sep 2003 22:37:33 +0000
parents eb90c0a5a1ba
children a313e1080322
comparison
equal deleted inserted replaced
240:e6f99d238179 241:3d92f793fd67
189 189
190 return 0; 190 return 0;
191 } 191 }
192 192
193 static int wav_write_packet(AVFormatContext *s, int stream_index_ptr, 193 static int wav_write_packet(AVFormatContext *s, int stream_index_ptr,
194 uint8_t *buf, int size, int force_pts) 194 const uint8_t *buf, int size, int64_t pts)
195 { 195 {
196 ByteIOContext *pb = &s->pb; 196 ByteIOContext *pb = &s->pb;
197 put_buffer(pb, buf, size); 197 put_buffer(pb, buf, size);
198 return 0; 198 return 0;
199 } 199 }