comparison au.c @ 241:3d92f793fd67 libavformat

64 bit pts for writing - more const usage
author bellard
date Wed, 10 Sep 2003 22:37:33 +0000
parents 01bec1059bdf
children a313e1080322
comparison
equal deleted inserted replaced
240:e6f99d238179 241:3d92f793fd67
70 70
71 return 0; 71 return 0;
72 } 72 }
73 73
74 static int au_write_packet(AVFormatContext *s, int stream_index_ptr, 74 static int au_write_packet(AVFormatContext *s, int stream_index_ptr,
75 uint8_t *buf, int size, int force_pts) 75 const uint8_t *buf, int size, int64_t pts)
76 { 76 {
77 ByteIOContext *pb = &s->pb; 77 ByteIOContext *pb = &s->pb;
78 put_buffer(pb, buf, size); 78 put_buffer(pb, buf, size);
79 return 0; 79 return 0;
80 } 80 }