summaryrefslogtreecommitdiff
path: root/libavresample
diff options
context:
space:
mode:
authorPeter Meerwald <p.meerwald@bct-electronic.com>2013-01-03 14:17:29 +0100
committerMartin Storsjö <martin@martin.st>2013-01-04 10:29:55 +0200
commitbe6cde3ce86e9ecf9b52309d7ca68c410ced525d (patch)
tree8e834b2714ac8eff8f37e72ce5447f7f33e6e0ef /libavresample
parent53c25ee0736497b46bb76064cc2c84c976b2d295 (diff)
lavr: fix missing " in header documentation
Signed-off-by: Peter Meerwald <p.meerwald@bct-electronic.com> Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavresample')
-rw-r--r--libavresample/avresample.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavresample/avresample.h b/libavresample/avresample.h
index 34998aa0cc..0012787404 100644
--- a/libavresample/avresample.h
+++ b/libavresample/avresample.h
@@ -49,7 +49,7 @@
* av_opt_set_int(avr, "in_sample_rate", 48000, 0);
* av_opt_set_int(avr, "out_sample_rate", 44100, 0);
* av_opt_set_int(avr, "in_sample_fmt", AV_SAMPLE_FMT_FLTP, 0);
- * av_opt_set_int(avr, "out_sample_fmt, AV_SAMPLE_FMT_S16, 0);
+ * av_opt_set_int(avr, "out_sample_fmt", AV_SAMPLE_FMT_S16, 0);
* @endcode
*
* Once the context is initialized, it must be opened with avresample_open(). If