Commit 68c3e602 authored by Michael Niedermayer's avatar Michael Niedermayer

Fix convertion typos

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 81206683
...@@ -1014,7 +1014,7 @@ static const AVOption options[] = { ...@@ -1014,7 +1014,7 @@ static const AVOption options[] = {
{ "default", "use timestamps from the kernel", OFFSET(ts_mode), AV_OPT_TYPE_CONST, {.i64 = V4L_TS_DEFAULT }, 0, 2, DEC, "timestamps" }, { "default", "use timestamps from the kernel", OFFSET(ts_mode), AV_OPT_TYPE_CONST, {.i64 = V4L_TS_DEFAULT }, 0, 2, DEC, "timestamps" },
{ "abs", "use absolute timestamps (wall clock)", OFFSET(ts_mode), AV_OPT_TYPE_CONST, {.i64 = V4L_TS_ABS }, 0, 2, DEC, "timestamps" }, { "abs", "use absolute timestamps (wall clock)", OFFSET(ts_mode), AV_OPT_TYPE_CONST, {.i64 = V4L_TS_ABS }, 0, 2, DEC, "timestamps" },
{ "mono2abs", "force conversion from monotonic to absolute timestamps", OFFSET(ts_mode), AV_OPT_TYPE_CONST, {.i64 = V4L_TS_MONO2ABS }, 0, 2, DEC, "timestamps" }, { "mono2abs", "force conversion from monotonic to absolute timestamps", OFFSET(ts_mode), AV_OPT_TYPE_CONST, {.i64 = V4L_TS_MONO2ABS }, 0, 2, DEC, "timestamps" },
{ "use_libv4l2", "use libv4l2 (v4l-utils) convertion functions", OFFSET(use_libv4l2), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, DEC }, { "use_libv4l2", "use libv4l2 (v4l-utils) conversion functions", OFFSET(use_libv4l2), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, DEC },
{ NULL }, { NULL },
}; };
......
...@@ -210,7 +210,7 @@ void swr_free(struct SwrContext **s); ...@@ -210,7 +210,7 @@ void swr_free(struct SwrContext **s);
* *
* If more input is provided than output space then the input will be buffered. * If more input is provided than output space then the input will be buffered.
* You can avoid this buffering by providing more output space than input. * You can avoid this buffering by providing more output space than input.
* Convertion will run directly without copying whenever possible. * Conversion will run directly without copying whenever possible.
* *
* @param s allocated Swr context, with parameters set * @param s allocated Swr context, with parameters set
* @param out output buffers, only the first one need be set in case of packed audio * @param out output buffers, only the first one need be set in case of packed audio
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment