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] Fix typos
@ 2025-06-15 15:11 Clément Péron
  2025-06-15 15:24 ` Gyan Doshi
  0 siblings, 1 reply; 8+ messages in thread
From: Clément Péron @ 2025-06-15 15:11 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: Clément Péron

usefull -> useful
seperately -> separately
reciever -> receiver

Signed-off-by: Clément Péron <peron.clem@gmail.com>
---
 doc/filters.texi                | 2 +-
 libavdevice/avfoundation.m      | 4 ++--
 libavfilter/vf_nlmeans_opencl.c | 2 +-
 libavformat/mxfenc.c            | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/doc/filters.texi b/doc/filters.texi
index 63f55f5794..f32fc23c70 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -14547,7 +14547,7 @@ e.g. quality comparison.
 
 Each line of the map file must contain three items per input frame, the input
 PTS (decimal), the output PTS (decimal) and the
-output TIMEBASE (decimal/decimal), seperated by a space.
+output TIMEBASE (decimal/decimal), separated by a space.
 This file format corresponds to the output
 of @code{-stats_mux_pre_fmt="@{ptsi@} @{pts@} @{tb@}"}.
 
diff --git a/libavdevice/avfoundation.m b/libavdevice/avfoundation.m
index 6f15e2837e..ebec1ac4f2 100644
--- a/libavdevice/avfoundation.m
+++ b/libavdevice/avfoundation.m
@@ -150,7 +150,7 @@ static void unlock_frames(AVFContext* ctx)
     pthread_mutex_unlock(&ctx->frame_lock);
 }
 
-/** FrameReciever class - delegate for AVCaptureSession
+/** FrameReceiver class - delegate for AVCaptureSession
  */
 @interface AVFFrameReceiver : NSObject
 {
@@ -242,7 +242,7 @@ static void unlock_frames(AVFContext* ctx)
 
 @end
 
-/** AudioReciever class - delegate for AVCaptureSession
+/** AudioReceiver class - delegate for AVCaptureSession
  */
 @interface AVFAudioReceiver : NSObject
 {
diff --git a/libavfilter/vf_nlmeans_opencl.c b/libavfilter/vf_nlmeans_opencl.c
index ae64429efc..58f105253d 100644
--- a/libavfilter/vf_nlmeans_opencl.c
+++ b/libavfilter/vf_nlmeans_opencl.c
@@ -207,7 +207,7 @@ static int nlmeans_plane(AVFilterContext *avctx, cl_mem dst, cl_mem src,
             }
         }
     }
-    // repack dx/dy seperately, as we want to do four pairs of dx/dy in a batch
+    // repack dx/dy separately, as we want to do four pairs of dx/dy in a batch
     for (i = 0; i < nb_pixel / 4; i++) {
         dxdy[i * 8] = tmp[i * 8];         // dx0
         dxdy[i * 8 + 1] = tmp[i * 8 + 2]; // dx1
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
index ffb207576a..d12ccfd739 100644
--- a/libavformat/mxfenc.c
+++ b/libavformat/mxfenc.c
@@ -2682,7 +2682,7 @@ static int mxf_parse_jpeg2000_frame(AVFormatContext *s, AVStream *st, AVPacket *
         return AVERROR_INVALIDDATA;
     }
 
-    /* Extract usefull size information from the SIZ marker */
+    /* Extract useful size information from the SIZ marker */
     if (bytestream2_get_be16u(&g) != JPEG2000_SIZ) {
         av_log(s, AV_LOG_ERROR, "Mandatory SIZ marker is not present\n");
         return AVERROR_INVALIDDATA;
-- 
2.48.1

_______________________________________________
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] 8+ messages in thread

* Re: [FFmpeg-devel] [PATCH] Fix typos
  2025-06-15 15:11 [FFmpeg-devel] [PATCH] Fix typos Clément Péron
@ 2025-06-15 15:24 ` Gyan Doshi
  2025-06-15 15:29   ` Marth64
  0 siblings, 1 reply; 8+ messages in thread
From: Gyan Doshi @ 2025-06-15 15:24 UTC (permalink / raw)
  To: ffmpeg-devel



On 2025-06-15 08:41 pm, Clément Péron wrote:
> usefull -> useful
> seperately -> separately
> reciever -> receiver

Will apply.

Regards,
Gyan

>
> Signed-off-by: Clément Péron <peron.clem@gmail.com>
> ---
>   doc/filters.texi                | 2 +-
>   libavdevice/avfoundation.m      | 4 ++--
>   libavfilter/vf_nlmeans_opencl.c | 2 +-
>   libavformat/mxfenc.c            | 2 +-
>   4 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/doc/filters.texi b/doc/filters.texi
> index 63f55f5794..f32fc23c70 100644
> --- a/doc/filters.texi
> +++ b/doc/filters.texi
> @@ -14547,7 +14547,7 @@ e.g. quality comparison.
>   
>   Each line of the map file must contain three items per input frame, the input
>   PTS (decimal), the output PTS (decimal) and the
> -output TIMEBASE (decimal/decimal), seperated by a space.
> +output TIMEBASE (decimal/decimal), separated by a space.
>   This file format corresponds to the output
>   of @code{-stats_mux_pre_fmt="@{ptsi@} @{pts@} @{tb@}"}.
>   
> diff --git a/libavdevice/avfoundation.m b/libavdevice/avfoundation.m
> index 6f15e2837e..ebec1ac4f2 100644
> --- a/libavdevice/avfoundation.m
> +++ b/libavdevice/avfoundation.m
> @@ -150,7 +150,7 @@ static void unlock_frames(AVFContext* ctx)
>       pthread_mutex_unlock(&ctx->frame_lock);
>   }
>   
> -/** FrameReciever class - delegate for AVCaptureSession
> +/** FrameReceiver class - delegate for AVCaptureSession
>    */
>   @interface AVFFrameReceiver : NSObject
>   {
> @@ -242,7 +242,7 @@ static void unlock_frames(AVFContext* ctx)
>   
>   @end
>   
> -/** AudioReciever class - delegate for AVCaptureSession
> +/** AudioReceiver class - delegate for AVCaptureSession
>    */
>   @interface AVFAudioReceiver : NSObject
>   {
> diff --git a/libavfilter/vf_nlmeans_opencl.c b/libavfilter/vf_nlmeans_opencl.c
> index ae64429efc..58f105253d 100644
> --- a/libavfilter/vf_nlmeans_opencl.c
> +++ b/libavfilter/vf_nlmeans_opencl.c
> @@ -207,7 +207,7 @@ static int nlmeans_plane(AVFilterContext *avctx, cl_mem dst, cl_mem src,
>               }
>           }
>       }
> -    // repack dx/dy seperately, as we want to do four pairs of dx/dy in a batch
> +    // repack dx/dy separately, as we want to do four pairs of dx/dy in a batch
>       for (i = 0; i < nb_pixel / 4; i++) {
>           dxdy[i * 8] = tmp[i * 8];         // dx0
>           dxdy[i * 8 + 1] = tmp[i * 8 + 2]; // dx1
> diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
> index ffb207576a..d12ccfd739 100644
> --- a/libavformat/mxfenc.c
> +++ b/libavformat/mxfenc.c
> @@ -2682,7 +2682,7 @@ static int mxf_parse_jpeg2000_frame(AVFormatContext *s, AVStream *st, AVPacket *
>           return AVERROR_INVALIDDATA;
>       }
>   
> -    /* Extract usefull size information from the SIZ marker */
> +    /* Extract useful size information from the SIZ marker */
>       if (bytestream2_get_be16u(&g) != JPEG2000_SIZ) {
>           av_log(s, AV_LOG_ERROR, "Mandatory SIZ marker is not present\n");
>           return AVERROR_INVALIDDATA;

_______________________________________________
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] 8+ messages in thread

* Re: [FFmpeg-devel] [PATCH] Fix typos
  2025-06-15 15:24 ` Gyan Doshi
@ 2025-06-15 15:29   ` Marth64
  2025-06-15 15:33     ` Gyan Doshi
  0 siblings, 1 reply; 8+ messages in thread
From: Marth64 @ 2025-06-15 15:29 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

thanks both
_______________________________________________
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] 8+ messages in thread

* Re: [FFmpeg-devel] [PATCH] Fix typos
  2025-06-15 15:29   ` Marth64
@ 2025-06-15 15:33     ` Gyan Doshi
  2025-06-15 15:47       ` Clément Péron
  0 siblings, 1 reply; 8+ messages in thread
From: Gyan Doshi @ 2025-06-15 15:33 UTC (permalink / raw)
  To: ffmpeg-devel



On 2025-06-15 08:59 pm, Marth64 wrote:
> thanks both

Pushed as 90424a447556c45f035a128d673607bff05d0fd6

Regards,
Gyan

_______________________________________________
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] 8+ messages in thread

* Re: [FFmpeg-devel] [PATCH] Fix typos
  2025-06-15 15:33     ` Gyan Doshi
@ 2025-06-15 15:47       ` Clément Péron
  2025-06-15 16:05         ` Gyan Doshi
  0 siblings, 1 reply; 8+ messages in thread
From: Clément Péron @ 2025-06-15 15:47 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

On Sun, 15 Jun 2025 at 17:33, Gyan Doshi <ffmpeg@gyani.pro> wrote:
>
>
>
> On 2025-06-15 08:59 pm, Marth64 wrote:
> > thanks both
>
> Pushed as 90424a447556c45f035a128d673607bff05d0fd6

Not an issue for me but just a remark the email is wrong: "Author:
Clément Péron <peron.clem-at-gmail.com@ffmpeg.org>"

Regards,

>
> Regards,
> Gyan
>
> _______________________________________________
> 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".
_______________________________________________
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] 8+ messages in thread

* Re: [FFmpeg-devel] [PATCH] Fix typos
  2025-06-15 15:47       ` Clément Péron
@ 2025-06-15 16:05         ` Gyan Doshi
  2025-06-15 17:25           ` Clément Péron
  0 siblings, 1 reply; 8+ messages in thread
From: Gyan Doshi @ 2025-06-15 16:05 UTC (permalink / raw)
  To: ffmpeg-devel



On 2025-06-15 09:17 pm, Clément Péron wrote:
> On Sun, 15 Jun 2025 at 17:33, Gyan Doshi <ffmpeg@gyani.pro> wrote:
>>
>>
>> On 2025-06-15 08:59 pm, Marth64 wrote:
>>> thanks both
>> Pushed as 90424a447556c45f035a128d673607bff05d0fd6
> Not an issue for me but just a remark the email is wrong: "Author:
> Clément Péron <peron.clem-at-gmail.com@ffmpeg.org>"

It is the email address as received by Patchwork.

Regards,
Gyan

_______________________________________________
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] 8+ messages in thread

* Re: [FFmpeg-devel] [PATCH] Fix typos
  2025-06-15 16:05         ` Gyan Doshi
@ 2025-06-15 17:25           ` Clément Péron
  2025-06-15 18:06             ` Timo Rothenpieler
  0 siblings, 1 reply; 8+ messages in thread
From: Clément Péron @ 2025-06-15 17:25 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

On Sun, 15 Jun 2025 at 18:05, Gyan Doshi <ffmpeg@gyani.pro> wrote:
>
>
>
> On 2025-06-15 09:17 pm, Clément Péron wrote:
> > On Sun, 15 Jun 2025 at 17:33, Gyan Doshi <ffmpeg@gyani.pro> wrote:
> >>
> >>
> >> On 2025-06-15 08:59 pm, Marth64 wrote:
> >>> thanks both
> >> Pushed as 90424a447556c45f035a128d673607bff05d0fd6
> > Not an issue for me but just a remark the email is wrong: "Author:
> > Clément Péron <peron.clem-at-gmail.com@ffmpeg.org>"
>
> It is the email address as received by Patchwork.

Indeed, in Patchwork the "From:" has been altered from what I have sent.

Not sure who is in charge of patchwork but would be nice to notify him.

Regards,




>
> Regards,
> Gyan
>
> _______________________________________________
> 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".
_______________________________________________
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] 8+ messages in thread

* Re: [FFmpeg-devel] [PATCH] Fix typos
  2025-06-15 17:25           ` Clément Péron
@ 2025-06-15 18:06             ` Timo Rothenpieler
  0 siblings, 0 replies; 8+ messages in thread
From: Timo Rothenpieler @ 2025-06-15 18:06 UTC (permalink / raw)
  To: ffmpeg-devel

On 15.06.2025 19:25, Clément Péron wrote:
> On Sun, 15 Jun 2025 at 18:05, Gyan Doshi <ffmpeg@gyani.pro> wrote:
>>
>>
>>
>> On 2025-06-15 09:17 pm, Clément Péron wrote:
>>> On Sun, 15 Jun 2025 at 17:33, Gyan Doshi <ffmpeg@gyani.pro> wrote:
>>>>
>>>>
>>>> On 2025-06-15 08:59 pm, Marth64 wrote:
>>>>> thanks both
>>>> Pushed as 90424a447556c45f035a128d673607bff05d0fd6
>>> Not an issue for me but just a remark the email is wrong: "Author:
>>> Clément Péron <peron.clem-at-gmail.com@ffmpeg.org>"
>>
>> It is the email address as received by Patchwork.
> 
> Indeed, in Patchwork the "From:" has been altered from what I have sent.

It's altered on the entire ML, since otherwise the ML could not re-send 
mails from domains with restrictive SPF/DMARC settings, like Google uses.

And since Patchwork is only a subscriber to the ML like anyone else, it 
of course also gets the modified From header.
_______________________________________________
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] 8+ messages in thread

end of thread, other threads:[~2025-06-15 18:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-06-15 15:11 [FFmpeg-devel] [PATCH] Fix typos Clément Péron
2025-06-15 15:24 ` Gyan Doshi
2025-06-15 15:29   ` Marth64
2025-06-15 15:33     ` Gyan Doshi
2025-06-15 15:47       ` Clément Péron
2025-06-15 16:05         ` Gyan Doshi
2025-06-15 17:25           ` Clément Péron
2025-06-15 18:06             ` Timo Rothenpieler

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