Browse code

swr/doxy: fix missing quote in code example.

Clément Bœsch authored on 2012/12/17 05:04:54
Showing 1 changed files
... ...
@@ -48,8 +48,8 @@
48 48
  * av_opt_set_int(swr, "out_channel_layout", AV_CH_LAYOUT_STEREO,  0);
49 49
  * av_opt_set_int(swr, "in_sample_rate",     48000,                0);
50 50
  * av_opt_set_int(swr, "out_sample_rate",    44100,                0);
51
- * av_opt_set_sample_fmt(swr, "in_sample_fmt", AV_SAMPLE_FMT_FLTP, 0);
52
- * av_opt_set_sample_fmt(swr, "out_sample_fmt, AV_SAMPLE_FMT_S16,  0);
51
+ * av_opt_set_sample_fmt(swr, "in_sample_fmt",  AV_SAMPLE_FMT_FLTP, 0);
52
+ * av_opt_set_sample_fmt(swr, "out_sample_fmt", AV_SAMPLE_FMT_S16,  0);
53 53
  * @endcode
54 54
  *
55 55
  * Once all values have been set, it must be initialized with swr_init(). If