summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-01-01 12:55:27 +0000
committerPaul B Mahol <onemda@gmail.com>2013-01-01 12:57:07 +0000
commit8e4e532bb28ef8713145ec85aafac3b3fe2775e3 (patch)
tree71045c1d2422d6f92febf295db9104e0e8cb640b /libavfilter
parentc047a41bc5ff113bd9c7e010cf617c2589879720 (diff)
lavfi/avcodec: fix typo
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/avcodec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avcodec.c b/libavfilter/avcodec.c
index dcd6bb6cd2..0c1f02ad8a 100644
--- a/libavfilter/avcodec.c
+++ b/libavfilter/avcodec.c
@@ -100,7 +100,7 @@ AVFilterBufferRef *avfilter_get_audio_buffer_ref_from_frame(const AVFrame *frame
return NULL;
if (layout && av_get_channel_layout_nb_channels(layout) != av_frame_get_channels(frame)) {
- av_log(0, AV_LOG_ERROR, "Layout indicates a differnt number of channels than actually present\n");
+ av_log(0, AV_LOG_ERROR, "Layout indicates a different number of channels than actually present\n");
return NULL;
}