Browse Source

64 bit pts for writing - more const usage (don't forget me !)

Originally committed as revision 2269 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
François Revol 22 years ago
parent
commit
a018d318e7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/beosaudio.cpp

+ 1
- 1
libavformat/beosaudio.cpp View File

@@ -296,7 +296,7 @@ static int audio_write_header(AVFormatContext *s1)
} }


static int audio_write_packet(AVFormatContext *s1, int stream_index, static int audio_write_packet(AVFormatContext *s1, int stream_index,
uint8_t *buf, int size, int force_pts)
const uint8_t *buf, int size, int64_t force_pts)
{ {
AudioData *s = (AudioData *)s1->priv_data; AudioData *s = (AudioData *)s1->priv_data;
int len, ret; int len, ret;


Loading…
Cancel
Save