diff raw.c @ 241:3d92f793fd67 libavformat

64 bit pts for writing - more const usage
author bellard
date Wed, 10 Sep 2003 22:37:33 +0000
parents b99548e3ab84
children a313e1080322
line wrap: on
line diff
--- a/raw.c	Wed Sep 10 13:00:24 2003 +0000
+++ b/raw.c	Wed Sep 10 22:37:33 2003 +0000
@@ -25,7 +25,7 @@
 }
 
 static int raw_write_packet(struct AVFormatContext *s, int stream_index,
-			    unsigned char *buf, int size, int force_pts)
+			    const uint8_t *buf, int size, int64_t pts)
 {
     put_buffer(&s->pb, buf, size);
     put_flush_packet(&s->pb);
@@ -459,7 +459,7 @@
 
 static int null_write_packet(struct AVFormatContext *s, 
                              int stream_index,
-                             unsigned char *buf, int size, int force_pts)
+                             const uint8_t *buf, int size, int64_t pts)
 {
     return 0;
 }