* [FFmpeg-devel] [PATCH] doc/encoders/libxvid: fix references for me_quality option
@ 2023-08-26 10:56 Stefano Sabatini
2023-09-05 23:12 ` Stefano Sabatini
2023-09-06 5:26 ` Gyan Doshi
0 siblings, 2 replies; 4+ messages in thread
From: Stefano Sabatini @ 2023-08-26 10:56 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: Stefano Sabatini
Drop reference to constants removed in 94eed68ace9f2416af8.
In particular, rename me_method to me_quality and add description for
supported values.
Address trac issue:
http://trac.ffmpeg.org/ticket/10003
---
doc/encoders.texi | 21 +++++++++------------
1 file changed, 9 insertions(+), 12 deletions(-)
diff --git a/doc/encoders.texi b/doc/encoders.texi
index 14c69fc7b3..25c40a6486 100644
--- a/doc/encoders.texi
+++ b/doc/encoders.texi
@@ -2981,27 +2981,24 @@ Place global headers in extradata instead of every keyframe.
@item trellis
-@item me_method
-Set motion estimation method. Possible values in decreasing order of
+@item me_quality
+Set motion estimation quality level. Possible values in decreasing order of
speed and increasing order of quality:
@table @samp
-@item zero
+@item 0
Use no motion estimation (default).
-@item phods
-@item x1
-@item log
+@item 1, 2
Enable advanced diamond zonal search for 16x16 blocks and half-pixel
-refinement for 16x16 blocks. @samp{x1} and @samp{log} are aliases for
-@samp{phods}.
+refinement for 16x16 blocks.
-@item epzs
+@item 3, 4
Enable all of the things described above, plus advanced diamond zonal
-search for 8x8 blocks, half-pixel refinement for 8x8 blocks, and motion
-estimation on chroma planes.
+search for 8x8 blocks and half-pixel refinement for 8x8 blocks, also
+enable motion estimation on chrom planes for P and B-frames.
-@item full
+@item 5, 6
Enable all of the things described above, plus extended 16x16 and 8x8
blocks search.
@end table
--
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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] doc/encoders/libxvid: fix references for me_quality option
2023-08-26 10:56 [FFmpeg-devel] [PATCH] doc/encoders/libxvid: fix references for me_quality option Stefano Sabatini
@ 2023-09-05 23:12 ` Stefano Sabatini
2023-09-06 5:26 ` Gyan Doshi
1 sibling, 0 replies; 4+ messages in thread
From: Stefano Sabatini @ 2023-09-05 23:12 UTC (permalink / raw)
To: FFmpeg development discussions and patches
On date Saturday 2023-08-26 12:56:10 +0200, Stefano Sabatini wrote:
> Drop reference to constants removed in 94eed68ace9f2416af8.
>
> In particular, rename me_method to me_quality and add description for
> supported values.
>
> Address trac issue:
> http://trac.ffmpeg.org/ticket/10003
> ---
> doc/encoders.texi | 21 +++++++++------------
> 1 file changed, 9 insertions(+), 12 deletions(-)
>
> diff --git a/doc/encoders.texi b/doc/encoders.texi
> index 14c69fc7b3..25c40a6486 100644
> --- a/doc/encoders.texi
> +++ b/doc/encoders.texi
> @@ -2981,27 +2981,24 @@ Place global headers in extradata instead of every keyframe.
>
> @item trellis
>
> -@item me_method
> -Set motion estimation method. Possible values in decreasing order of
> +@item me_quality
> +Set motion estimation quality level. Possible values in decreasing order of
> speed and increasing order of quality:
>
> @table @samp
> -@item zero
> +@item 0
> Use no motion estimation (default).
>
> -@item phods
> -@item x1
> -@item log
> +@item 1, 2
> Enable advanced diamond zonal search for 16x16 blocks and half-pixel
> -refinement for 16x16 blocks. @samp{x1} and @samp{log} are aliases for
> -@samp{phods}.
> +refinement for 16x16 blocks.
>
> -@item epzs
> +@item 3, 4
> Enable all of the things described above, plus advanced diamond zonal
> -search for 8x8 blocks, half-pixel refinement for 8x8 blocks, and motion
> -estimation on chroma planes.
> +search for 8x8 blocks and half-pixel refinement for 8x8 blocks, also
> +enable motion estimation on chrom planes for P and B-frames.
>
> -@item full
> +@item 5, 6
> Enable all of the things described above, plus extended 16x16 and 8x8
> blocks search.
> @end table
Will apply in a few days if I see no comments.
_______________________________________________
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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] doc/encoders/libxvid: fix references for me_quality option
2023-08-26 10:56 [FFmpeg-devel] [PATCH] doc/encoders/libxvid: fix references for me_quality option Stefano Sabatini
2023-09-05 23:12 ` Stefano Sabatini
@ 2023-09-06 5:26 ` Gyan Doshi
2023-10-06 7:54 ` Stefano Sabatini
1 sibling, 1 reply; 4+ messages in thread
From: Gyan Doshi @ 2023-09-06 5:26 UTC (permalink / raw)
To: ffmpeg-devel
On 2023-08-26 04:26 pm, Stefano Sabatini wrote:
> Drop reference to constants removed in 94eed68ace9f2416af8.
>
> In particular, rename me_method to me_quality and add description for
> supported values.
>
> Address trac issue:
> http://trac.ffmpeg.org/ticket/10003
> ---
> doc/encoders.texi | 21 +++++++++------------
> 1 file changed, 9 insertions(+), 12 deletions(-)
>
> diff --git a/doc/encoders.texi b/doc/encoders.texi
> index 14c69fc7b3..25c40a6486 100644
> --- a/doc/encoders.texi
> +++ b/doc/encoders.texi
> @@ -2981,27 +2981,24 @@ Place global headers in extradata instead of every keyframe.
>
> @item trellis
>
> -@item me_method
> -Set motion estimation method. Possible values in decreasing order of
> +@item me_quality
> +Set motion estimation quality level. Possible values in decreasing order of
> speed and increasing order of quality:
>
> @table @samp
> -@item zero
> +@item 0
> Use no motion estimation (default).
>
> -@item phods
> -@item x1
> -@item log
> +@item 1, 2
> Enable advanced diamond zonal search for 16x16 blocks and half-pixel
> -refinement for 16x16 blocks. @samp{x1} and @samp{log} are aliases for
> -@samp{phods}.
> +refinement for 16x16 blocks.
>
> -@item epzs
> +@item 3, 4
> Enable all of the things described above, plus advanced diamond zonal
> -search for 8x8 blocks, half-pixel refinement for 8x8 blocks, and motion
> -estimation on chroma planes.
> +search for 8x8 blocks and half-pixel refinement for 8x8 blocks, also
> +enable motion estimation on chrom planes for P and B-frames.
s/chrom/chroma
>
> -@item full
> +@item 5, 6
> Enable all of the things described above, plus extended 16x16 and 8x8
> blocks search.
> @end table
Else, 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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] doc/encoders/libxvid: fix references for me_quality option
2023-09-06 5:26 ` Gyan Doshi
@ 2023-10-06 7:54 ` Stefano Sabatini
0 siblings, 0 replies; 4+ messages in thread
From: Stefano Sabatini @ 2023-10-06 7:54 UTC (permalink / raw)
To: FFmpeg development discussions and patches
On date Wednesday 2023-09-06 10:56:43 +0530, Gyan Doshi wrote:
> On 2023-08-26 04:26 pm, Stefano Sabatini wrote:
> > Drop reference to constants removed in 94eed68ace9f2416af8.
> >
> > In particular, rename me_method to me_quality and add description for
> > supported values.
> >
> > Address trac issue:
> > http://trac.ffmpeg.org/ticket/10003
> > ---
> > doc/encoders.texi | 21 +++++++++------------
> > 1 file changed, 9 insertions(+), 12 deletions(-)
> >
> > diff --git a/doc/encoders.texi b/doc/encoders.texi
> > index 14c69fc7b3..25c40a6486 100644
> > --- a/doc/encoders.texi
> > +++ b/doc/encoders.texi
> > @@ -2981,27 +2981,24 @@ Place global headers in extradata instead of every keyframe.
> > @item trellis
> > -@item me_method
> > -Set motion estimation method. Possible values in decreasing order of
> > +@item me_quality
> > +Set motion estimation quality level. Possible values in decreasing order of
> > speed and increasing order of quality:
> > @table @samp
> > -@item zero
> > +@item 0
> > Use no motion estimation (default).
> > -@item phods
> > -@item x1
> > -@item log
> > +@item 1, 2
> > Enable advanced diamond zonal search for 16x16 blocks and half-pixel
> > -refinement for 16x16 blocks. @samp{x1} and @samp{log} are aliases for
> > -@samp{phods}.
> > +refinement for 16x16 blocks.
> > -@item epzs
> > +@item 3, 4
> > Enable all of the things described above, plus advanced diamond zonal
> > -search for 8x8 blocks, half-pixel refinement for 8x8 blocks, and motion
> > -estimation on chroma planes.
> > +search for 8x8 blocks and half-pixel refinement for 8x8 blocks, also
> > +enable motion estimation on chrom planes for P and B-frames.
> s/chrom/chroma
>
> > -@item full
> > +@item 5, 6
> > Enable all of the things described above, plus extended 16x16 and 8x8
> > blocks search.
> > @end table
>
> Else, LGTM.
Applied, thanks.
_______________________________________________
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] 4+ messages in thread
end of thread, other threads:[~2023-10-06 7:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-26 10:56 [FFmpeg-devel] [PATCH] doc/encoders/libxvid: fix references for me_quality option Stefano Sabatini
2023-09-05 23:12 ` Stefano Sabatini
2023-09-06 5:26 ` Gyan Doshi
2023-10-06 7:54 ` Stefano Sabatini
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