Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-02 01:22:48 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-02 02:22:08 +0400
commitec1d2e2fb04ad30f3681c86badb02e04ecb9fa08 (patch)
tree84a5bbdadc63202e70f6759a66b2b39472f2703e /ffplay.c
parentcc38ca67482b651a82a1302ba367b76a1cbc0246 (diff)
ffplay: use AVFrame accessor functions
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ffplay.c b/ffplay.c
index 01ee15e65c..7276c4a6e4 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2131,13 +2131,13 @@ static int audio_decode_frame(VideoState *is)
flush_complete = 1;
continue;
}
- data_size = av_samples_get_buffer_size(NULL, is->frame->channels,
+ data_size = av_samples_get_buffer_size(NULL, av_frame_get_channels(is->frame),
is->frame->nb_samples,
is->frame->format, 1);
dec_channel_layout =
- (is->frame->channel_layout && is->frame->channels == av_get_channel_layout_nb_channels(is->frame->channel_layout)) ?
- is->frame->channel_layout : av_get_default_channel_layout(is->frame->channels);
+ (is->frame->channel_layout && av_frame_get_channels(is->frame) == av_get_channel_layout_nb_channels(is->frame->channel_layout)) ?
+ is->frame->channel_layout : av_get_default_channel_layout(av_frame_get_channels(is->frame));
wanted_nb_samples = synchronize_audio(is, is->frame->nb_samples);
if (is->frame->format != is->audio_src.fmt ||
@@ -2151,12 +2151,12 @@ static int audio_decode_frame(VideoState *is)
0, NULL);
if (!is->swr_ctx || swr_init(is->swr_ctx) < 0) {
fprintf(stderr, "Cannot create sample rate converter for conversion of %d Hz %s %d channels to %d Hz %s %d channels!\n",
- is->frame->sample_rate, av_get_sample_fmt_name(is->frame->format), is->frame->channels,
+ is->frame->sample_rate, av_get_sample_fmt_name(is->frame->format), av_frame_get_channels(is->frame),
is->audio_tgt.freq, av_get_sample_fmt_name(is->audio_tgt.fmt), is->audio_tgt.channels);
break;
}
is->audio_src.channel_layout = dec_channel_layout;
- is->audio_src.channels = is->frame->channels;
+ is->audio_src.channels = av_frame_get_channels(is->frame);
is->audio_src.freq = is->frame->sample_rate;
is->audio_src.fmt = is->frame->format;
}
@@ -2194,7 +2194,7 @@ static int audio_decode_frame(VideoState *is)
audio_clock0 = is->audio_clock;
is->audio_clock += (double)data_size /
- (is->frame->channels * is->frame->sample_rate * av_get_bytes_per_sample(is->frame->format));
+ (av_frame_get_channels(is->frame) * is->frame->sample_rate * av_get_bytes_per_sample(is->frame->format));
#ifdef DEBUG
{
static double last_clock;