summaryrefslogtreecommitdiff
path: root/doc/examples
diff options
context:
space:
mode:
authorLou Logan <lou@lrcd.com>2016-03-28 14:07:47 -0800
committerLou Logan <lou@lrcd.com>2016-03-28 14:13:17 -0800
commit06eef96b69d73a31f2b390955d1be0537214a0c8 (patch)
treeca45453b9853a6ad358966292639148a036f3a1a /doc/examples
parent99f2a59c2f298c2a8c0d1058759fd0ae81bc8c2e (diff)
fix some a/an typos
Signed-off-by: Lou Logan <lou@lrcd.com>
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/filtering_audio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/filtering_audio.c b/doc/examples/filtering_audio.c
index 89c80cfd55..6bb24a431d 100644
--- a/doc/examples/filtering_audio.c
+++ b/doc/examples/filtering_audio.c
@@ -65,7 +65,7 @@ static int open_input_file(const char *filename)
/* select the audio stream */
ret = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_AUDIO, -1, -1, &dec, 0);
if (ret < 0) {
- av_log(NULL, AV_LOG_ERROR, "Cannot find a audio stream in the input file\n");
+ av_log(NULL, AV_LOG_ERROR, "Cannot find an audio stream in the input file\n");
return ret;
}
audio_stream_index = ret;