diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-28 20:06:11 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-28 20:06:11 +0200 |
commit | 1e51af13c7538f427e8a0cf0e498263de674c70e (patch) | |
tree | def62a7a6957f81f2b15cc32f281d5e110f16717 /libavdevice | |
parent | d554d004a67c30e3f38bec51b2c691cfe3af3bb8 (diff) | |
download | ffmpeg-streaming-1e51af13c7538f427e8a0cf0e498263de674c70e.zip ffmpeg-streaming-1e51af13c7538f427e8a0cf0e498263de674c70e.tar.gz |
avdevice/pulse_audio_enc: use getter function for AVFrame.channels
This is required by the API/ABI for things outside libavutil
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/pulse_audio_enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/pulse_audio_enc.c b/libavdevice/pulse_audio_enc.c index b07d4c0..bc4d1f0 100644 --- a/libavdevice/pulse_audio_enc.c +++ b/libavdevice/pulse_audio_enc.c @@ -681,7 +681,7 @@ static int pulse_write_frame(AVFormatContext *h, int stream_index, AVERROR(EINVAL) : 0; pkt.data = (*frame)->data[0]; - pkt.size = (*frame)->nb_samples * av_get_bytes_per_sample((*frame)->format) * (*frame)->channels; + pkt.size = (*frame)->nb_samples * av_get_bytes_per_sample((*frame)->format) * av_frame_get_channels(*frame); pkt.dts = (*frame)->pkt_dts; pkt.duration = av_frame_get_pkt_duration(*frame); return pulse_write_packet(h, &pkt); |