* [FFmpeg-devel] [PATCH] avformat/hls: fix spelling and grammar on wrap warning
@ 2022-10-05 14:43 Tristan Matthews
2022-10-05 15:29 ` Steven Liu
0 siblings, 1 reply; 5+ messages in thread
From: Tristan Matthews @ 2022-10-05 14:43 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Tristan Matthews
---
libavformat/hls.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/hls.c b/libavformat/hls.c
index e622425e80..402eb2b5a0 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -1527,7 +1527,7 @@ reload:
return AVERROR_EOF;
}
} else {
- av_log(v->parent, AV_LOG_WARNING, "maybe the m3u8 list sequence have been wraped.\n");
+ av_log(v->parent, AV_LOG_WARNING, "The m3u8 list sequence may have been wrapped.\n");
}
if (v->cur_seq_no >= v->start_seq_no + v->n_segments) {
if (v->finished)
--
2.34.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] 5+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avformat/hls: fix spelling and grammar on wrap warning
2022-10-05 14:43 [FFmpeg-devel] [PATCH] avformat/hls: fix spelling and grammar on wrap warning Tristan Matthews
@ 2022-10-05 15:29 ` Steven Liu
2022-10-07 5:40 ` Gyan Doshi
0 siblings, 1 reply; 5+ messages in thread
From: Steven Liu @ 2022-10-05 15:29 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: Tristan Matthews
Tristan Matthews <tmatth@videolan.org> 于2022年10月5日周三 22:44写道:
>
> ---
> libavformat/hls.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavformat/hls.c b/libavformat/hls.c
> index e622425e80..402eb2b5a0 100644
> --- a/libavformat/hls.c
> +++ b/libavformat/hls.c
> @@ -1527,7 +1527,7 @@ reload:
> return AVERROR_EOF;
> }
> } else {
> - av_log(v->parent, AV_LOG_WARNING, "maybe the m3u8 list sequence have been wraped.\n");
> + av_log(v->parent, AV_LOG_WARNING, "The m3u8 list sequence may have been wrapped.\n");
> }
> if (v->cur_seq_no >= v->start_seq_no + v->n_segments) {
> if (v->finished)
> --
> 2.34.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".
English is not my native language, but this look ok to me.
Waiting for familiarity with English reviewer comments.
Thanks
Steven
_______________________________________________
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] 5+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avformat/hls: fix spelling and grammar on wrap warning
2022-10-05 15:29 ` Steven Liu
@ 2022-10-07 5:40 ` Gyan Doshi
2022-10-19 15:03 ` Tristan Matthews
0 siblings, 1 reply; 5+ messages in thread
From: Gyan Doshi @ 2022-10-07 5:40 UTC (permalink / raw)
To: ffmpeg-devel
On 2022-10-05 08:59 pm, Steven Liu wrote:
> Tristan Matthews <tmatth@videolan.org> 于2022年10月5日周三 22:44写道:
>> ---
>> libavformat/hls.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/libavformat/hls.c b/libavformat/hls.c
>> index e622425e80..402eb2b5a0 100644
>> --- a/libavformat/hls.c
>> +++ b/libavformat/hls.c
>> @@ -1527,7 +1527,7 @@ reload:
>> return AVERROR_EOF;
>> }
>> } else {
>> - av_log(v->parent, AV_LOG_WARNING, "maybe the m3u8 list sequence have been wraped.\n");
>> + av_log(v->parent, AV_LOG_WARNING, "The m3u8 list sequence may have been wrapped.\n");
>> }
>> if (v->cur_seq_no >= v->start_seq_no + v->n_segments) {
>> if (v->finished)
>> --
>> 2.34.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".
> English is not my native language, but this look ok to me.
> Waiting for familiarity with English reviewer comments.
LGTM.
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] 5+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avformat/hls: fix spelling and grammar on wrap warning
2022-10-07 5:40 ` Gyan Doshi
@ 2022-10-19 15:03 ` Tristan Matthews
2022-10-20 4:00 ` Gyan Doshi
0 siblings, 1 reply; 5+ messages in thread
From: Tristan Matthews @ 2022-10-19 15:03 UTC (permalink / raw)
To: FFmpeg development discussions and patches
On Fri, Oct 7, 2022 at 1:41 AM Gyan Doshi <ffmpeg@gyani.pro> wrote:
>
>
> On 2022-10-05 08:59 pm, Steven Liu wrote:
> > Tristan Matthews <tmatth@videolan.org> 于2022年10月5日周三 22:44写道:
> >> ---
> >> libavformat/hls.c | 2 +-
> >> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git a/libavformat/hls.c b/libavformat/hls.c
> >> index e622425e80..402eb2b5a0 100644
> >> --- a/libavformat/hls.c
> >> +++ b/libavformat/hls.c
> >> @@ -1527,7 +1527,7 @@ reload:
> >> return AVERROR_EOF;
> >> }
> >> } else {
> >> - av_log(v->parent, AV_LOG_WARNING, "maybe the m3u8 list
> sequence have been wraped.\n");
> >> + av_log(v->parent, AV_LOG_WARNING, "The m3u8 list sequence
> may have been wrapped.\n");
> >> }
> >> if (v->cur_seq_no >= v->start_seq_no + v->n_segments) {
> >> if (v->finished)
> >> --
> >> 2.34.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".
> > English is not my native language, but this look ok to me.
> > Waiting for familiarity with English reviewer comments.
>
> LGTM.
>
Ping?
Best,
-t
_______________________________________________
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] 5+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avformat/hls: fix spelling and grammar on wrap warning
2022-10-19 15:03 ` Tristan Matthews
@ 2022-10-20 4:00 ` Gyan Doshi
0 siblings, 0 replies; 5+ messages in thread
From: Gyan Doshi @ 2022-10-20 4:00 UTC (permalink / raw)
To: ffmpeg-devel
On 2022-10-19 08:33 pm, Tristan Matthews wrote:
> On Fri, Oct 7, 2022 at 1:41 AM Gyan Doshi <ffmpeg@gyani.pro> wrote:
>
>>
>> On 2022-10-05 08:59 pm, Steven Liu wrote:
>>> Tristan Matthews <tmatth@videolan.org> 于2022年10月5日周三 22:44写道:
>>>> ---
>>>> libavformat/hls.c | 2 +-
>>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>>
>>>> diff --git a/libavformat/hls.c b/libavformat/hls.c
>>>> index e622425e80..402eb2b5a0 100644
>>>> --- a/libavformat/hls.c
>>>> +++ b/libavformat/hls.c
>>>> @@ -1527,7 +1527,7 @@ reload:
>>>> return AVERROR_EOF;
>>>> }
>>>> } else {
>>>> - av_log(v->parent, AV_LOG_WARNING, "maybe the m3u8 list
>> sequence have been wraped.\n");
>>>> + av_log(v->parent, AV_LOG_WARNING, "The m3u8 list sequence
>> may have been wrapped.\n");
>>>> }
>>>> if (v->cur_seq_no >= v->start_seq_no + v->n_segments) {
>>>> if (v->finished)
>>>> --
>>>> 2.34.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".
>>> English is not my native language, but this look ok to me.
>>> Waiting for familiarity with English reviewer comments.
>> LGTM.
>>
> Ping?
Will push.
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] 5+ messages in thread
end of thread, other threads:[~2022-10-20 4:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-05 14:43 [FFmpeg-devel] [PATCH] avformat/hls: fix spelling and grammar on wrap warning Tristan Matthews
2022-10-05 15:29 ` Steven Liu
2022-10-07 5:40 ` Gyan Doshi
2022-10-19 15:03 ` Tristan Matthews
2022-10-20 4:00 ` Gyan Doshi
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