diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-15 17:31:34 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-15 17:31:34 +0000 |
commit | a242ac3620e8610d7efa3852018c79c09546bec4 (patch) | |
tree | 1c2294ed0b86405faaff18bb926228a31fb7904e /libavfilter/avfilter.c | |
parent | 6baf4afa9969eea23cd4ec9b0cec3b7aed1f49af (diff) | |
download | ffmpeg-a242ac3620e8610d7efa3852018c79c09546bec4.tar.gz |
Rename AVFilterBufferRefAudioProps.samples_nb to nb_samples.
More consistent with the rest of FFmpeg and sounds more natural to
English speaking people.
Originally committed as revision 26374 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 4fbb6bf4a6..5a0ab8ef32 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -235,7 +235,7 @@ void ff_dprintf_ref(void *ctx, AVFilterBufferRef *ref, int end) if (ref->audio) { dprintf(ctx, " cl:%"PRId64"d sn:%d s:%d sr:%d p:%d", ref->audio->channel_layout, - ref->audio->samples_nb, + ref->audio->nb_samples, ref->audio->size, ref->audio->sample_rate, ref->audio->planar); |