Author: gkovacs Date: Wed Jul 29 09:08:09 2009 New Revision: 4826 Log: fixed local declarations in other files as well
Modified: concat/libavformat/m3u.c concat/libavformat/pls.c concat/libavformat/xspf.c Modified: concat/libavformat/m3u.c ============================================================================== --- concat/libavformat/m3u.c Wed Jul 29 05:06:53 2009 (r4825) +++ concat/libavformat/m3u.c Wed Jul 29 09:08:09 2009 (r4826) @@ -31,7 +31,7 @@ extern int ff_concatgen_read_packet(AVFo extern int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags); -extern int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); +extern int64_t ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); extern int ff_concatgen_read_close(AVFormatContext *s); Modified: concat/libavformat/pls.c ============================================================================== --- concat/libavformat/pls.c Wed Jul 29 05:06:53 2009 (r4825) +++ concat/libavformat/pls.c Wed Jul 29 09:08:09 2009 (r4826) @@ -31,7 +31,7 @@ extern int ff_concatgen_read_packet(AVFo extern int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags); -extern int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); +extern int64_t ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); extern int ff_concatgen_read_close(AVFormatContext *s); Modified: concat/libavformat/xspf.c ============================================================================== --- concat/libavformat/xspf.c Wed Jul 29 05:06:53 2009 (r4825) +++ concat/libavformat/xspf.c Wed Jul 29 09:08:09 2009 (r4826) @@ -34,7 +34,7 @@ extern int ff_concatgen_read_packet(AVFo extern int ff_concatgen_read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags); -extern int ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); +extern int64_t ff_concatgen_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos, int64_t pos_limit); extern int ff_concatgen_read_close(AVFormatContext *s); _______________________________________________ FFmpeg-soc mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
