On 06/15/2012 04:08 PM, Janne Grunau wrote: > --- > libavfilter/af_resample.c | 4 ++++ > 1 files changed, 4 insertions(+), 0 deletions(-) > > diff --git a/libavfilter/af_resample.c b/libavfilter/af_resample.c > index 8a02cfe..bc4a007 100644 > --- a/libavfilter/af_resample.c > +++ b/libavfilter/af_resample.c > @@ -119,7 +119,11 @@ static int config_output(AVFilterLink *outlink) > av_get_channel_layout_string(buf2, sizeof(buf2), > -1, outlink->channel_layout); > av_log(ctx, AV_LOG_VERBOSE, > +#if FF_API_SAMPLERATE64 > + "fmt:%s srate:%"PRId64" cl:%s -> fmt:%s srate:%"PRId64" cl:%s\n", > +#else > "fmt:%s srate:%d cl:%s -> fmt:%s srate:%d cl:%s\n", > +#endif /* FF_API_SAMPLERATE64 */ > av_get_sample_fmt_name(inlink ->format), inlink ->sample_rate, > buf1, > av_get_sample_fmt_name(outlink->format), outlink->sample_rate, > buf2); >
Ok. -- Luca Barbato Gentoo/linux http://dev.gentoo.org/~lu_zero _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
