[FFmpeg-soc] [soc]: r4602 - in concat/libavformat: concatgen.c m3u.c playlist.c playlist.h
Diego Biurrun
diego at biurrun.de
Sun Jul 5 16:32:33 CEST 2009
On Sat, Jul 04, 2009 at 11:24:40PM +0200, gkovacs wrote:
>
> Log:
> added ff_playlist prefix to functions
Hmmmm
> --- concat/libavformat/concatgen.c Sat Jul 4 23:19:36 2009 (r4601)
> +++ concat/libavformat/concatgen.c Sat Jul 4 23:24:40 2009 (r4602)
> @@ -82,7 +82,7 @@ int concatgen_read_seek(AVFormatContext
> ic = ctx->pelist[ctx->pe_curidxs[0]]->ic;
> - ic->iformat->read_seek(ic, stream_index, pts, flags);
> + return ic->iformat->read_seek(ic, stream_index, pts, flags);
> }
>
> int concatgen_read_timestamp(AVFormatContext *s,
> @@ -90,7 +90,6 @@ int concatgen_read_timestamp(AVFormatCon
> int64_t pos_limit)
> {
> - printf("m3u_read_timestamp called\n");
> PlaylistContext *ctx;
> @@ -102,7 +101,6 @@ int concatgen_read_timestamp(AVFormatCon
> int concatgen_read_close(AVFormatContext *s)
> {
> - printf("m3u_read_close called\n");
> PlaylistContext *ctx;
> @@ -114,7 +112,6 @@ int concatgen_read_close(AVFormatContext
> int concatgen_read_play(AVFormatContext *s)
> {
> - printf("m3u_read_play called\n");
> PlaylistContext *ctx;
> @@ -124,7 +121,6 @@ int concatgen_read_play(AVFormatContext
> int concatgen_read_pause(AVFormatContext *s)
> {
> - printf("m3u_read_pause called\n");
> PlaylistContext *ctx;
These are unrelated changes...
Diego
More information about the FFmpeg-soc
mailing list