Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH] avformat/imfdec: Convert to the new channel layout API
@ 2022-03-17 13:09 Andreas Rheinhardt
  2022-03-17 13:57 ` James Almer
  0 siblings, 1 reply; 3+ messages in thread
From: Andreas Rheinhardt @ 2022-03-17 13:09 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: Andreas Rheinhardt

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@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);
 
             } else {
                 /* in all other cases, use side data to skip samples */
-- 
2.32.0

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [FFmpeg-devel] [PATCH] avformat/imfdec: Convert to the new channel layout API
  2022-03-17 13:09 [FFmpeg-devel] [PATCH] avformat/imfdec: Convert to the new channel layout API Andreas Rheinhardt
@ 2022-03-17 13:57 ` James Almer
  2022-03-17 14:04   ` Andreas Rheinhardt
  0 siblings, 1 reply; 3+ messages in thread
From: James Almer @ 2022-03-17 13:57 UTC (permalink / raw)
  To: ffmpeg-devel



On 3/17/2022 10:09 AM, Andreas Rheinhardt wrote:
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@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 */
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [FFmpeg-devel] [PATCH] avformat/imfdec: Convert to the new channel layout API
  2022-03-17 13:57 ` James Almer
@ 2022-03-17 14:04   ` Andreas Rheinhardt
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Rheinhardt @ 2022-03-17 14:04 UTC (permalink / raw)
  To: ffmpeg-devel

James Almer:
> 
> 
> On 3/17/2022 10:09 AM, Andreas Rheinhardt wrote:
>> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@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.
> 

This and the fact that this code is quite recent: It has been merged in
b0193e26ca32914bdd3d05be5d1f474ca8c52124 on Feb 20.

- Andreas
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-03-17 14:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-17 13:09 [FFmpeg-devel] [PATCH] avformat/imfdec: Convert to the new channel layout API Andreas Rheinhardt
2022-03-17 13:57 ` James Almer
2022-03-17 14:04   ` Andreas Rheinhardt

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git