diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-04-08 15:07:42 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-04-08 15:07:42 +0000 |
commit | a266644f560f5292eea477093fb9183099f3921b (patch) | |
tree | aa8f389c60c2cdc3c1a2dddca148cf5726bcdfeb /libav/gif.c | |
parent | 684f44d9a06aaa5f0f54807ddcf7d1041e33295a (diff) | |
download | ffmpeg-a266644f560f5292eea477093fb9183099f3921b.tar.gz |
* more warning cleanups
* adding const & statics
Originally committed as revision 387 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/gif.c')
-rw-r--r-- | libav/gif.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libav/gif.c b/libav/gif.c index 50486586ad..f8a7fc0f1d 100644 --- a/libav/gif.c +++ b/libav/gif.c @@ -365,7 +365,7 @@ static int gif_write_video(AVFormatContext *s, } static int gif_write_packet(AVFormatContext *s, int stream_index, - UINT8 *buf, int size) + UINT8 *buf, int size, int force_pts) { AVCodecContext *codec = &s->streams[stream_index]->codec; if (codec->codec_type == CODEC_TYPE_AUDIO) @@ -401,4 +401,3 @@ AVFormat gif_format = { NULL, /* read_packet */ NULL, /* read_close */ }; - |