diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-12-16 21:04:54 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-12-16 21:04:54 +0100 |
commit | 0212c1c43dc428108f3c02f812ad20b97567b521 (patch) | |
tree | c2c5cb23b71cb27caffd4c9f876e2c63830079cb | |
parent | 9ad6b130201f3ac6fe26a03f129d83a7913110d1 (diff) | |
download | ffmpeg-0212c1c43dc428108f3c02f812ad20b97567b521.tar.gz |
swr/doxy: fix missing quote in code example.
-rw-r--r-- | libswresample/swresample.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h index a2b5cd0f09..1c6090dfbf 100644 --- a/libswresample/swresample.h +++ b/libswresample/swresample.h @@ -48,8 +48,8 @@ * av_opt_set_int(swr, "out_channel_layout", AV_CH_LAYOUT_STEREO, 0); * av_opt_set_int(swr, "in_sample_rate", 48000, 0); * av_opt_set_int(swr, "out_sample_rate", 44100, 0); - * av_opt_set_sample_fmt(swr, "in_sample_fmt", AV_SAMPLE_FMT_FLTP, 0); - * av_opt_set_sample_fmt(swr, "out_sample_fmt, AV_SAMPLE_FMT_S16, 0); + * av_opt_set_sample_fmt(swr, "in_sample_fmt", AV_SAMPLE_FMT_FLTP, 0); + * av_opt_set_sample_fmt(swr, "out_sample_fmt", AV_SAMPLE_FMT_S16, 0); * @endcode * * Once all values have been set, it must be initialized with swr_init(). If |