]> git.sesse.net Git - x264/commitdiff
x264.h: improve x264_encoder_reconfig documentation
authorFiona Glaser <fiona@x264.com>
Mon, 14 Jan 2013 13:35:30 +0000 (05:35 -0800)
committerFiona Glaser <fiona@x264.com>
Mon, 25 Feb 2013 20:14:32 +0000 (12:14 -0800)
x264.h

diff --git a/x264.h b/x264.h
index 767eb197257b47592a2217daffe93e26a9972c10..fff3ab38f4cfbc6e05963e3e048559670e5eb3c2 100644 (file)
--- a/x264.h
+++ b/x264.h
@@ -834,7 +834,13 @@ x264_t *x264_encoder_open( x264_param_t * );
  *      due to delay, this may not be the next frame passed to encoder_encode.
  *      if the change should apply to some particular frame, use x264_picture_t->param instead.
  *      returns 0 on success, negative on parameter validation error.
- *      not all parameters can be changed; see the actual function for a detailed breakdown. */
+ *      not all parameters can be changed; see the actual function for a detailed breakdown.
+ *
+ *      since not all parameters can be changed, moving from preset to preset may not always
+ *      fully copy all relevant parameters, but should still work usably in practice. however,
+ *      more so than for other presets, many of the speed shortcuts used in ultrafast cannot be
+ *      switched out of; using reconfig to switch between ultrafast and other presets is not
+ *      recommended without a more fine-grained breakdown of parameters to take this into account. */
 int     x264_encoder_reconfig( x264_t *, x264_param_t * );
 /* x264_encoder_parameters:
  *      copies the current internal set of parameters to the pointer provided