[FFmpeg-devel] [PATCH] avformat/imfdec: Convert to the new channel layout API

James Almer jamrial at gmail.com
Thu Mar 17 15:57:50 EET 2022



On 3/17/2022 10:09 AM, Andreas Rheinhardt wrote:
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> ---
>   libavformat/imfdec.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavformat/imfdec.c b/libavformat/imfdec.c
> index 3ce850b75a..9ec52efbc8 100644
> --- a/libavformat/imfdec.c
> +++ b/libavformat/imfdec.c
> @@ -874,7 +874,7 @@ static int imf_read_packet(AVFormatContext *s, AVPacket *pkt)
>                   int64_t nbsamples = av_rescale_q(pkt->duration,
>                                                    st->time_base,
>                                                    av_make_q(1, st->codecpar->sample_rate));
> -                av_shrink_packet(pkt, nbsamples * st->codecpar->channels * bytes_per_sample);
> +                av_shrink_packet(pkt, nbsamples * st->codecpar->ch_layout.nb_channels * bytes_per_sample);

Guess i missed it because i didn't have libxml2 enabled.

LGTM, thanks.

>   
>               } else {
>                   /* in all other cases, use side data to skip samples */


More information about the ffmpeg-devel mailing list