[FFmpeg-cvslog] timefilter: Fix typo in allocation failure message

Derek Buitenhuis git at videolan.org
Tue Oct 29 12:39:24 CET 2013


ffmpeg | branch: master | Derek Buitenhuis <derek.buitenhuis at gmail.com> | Tue Oct 29 11:38:35 2013 +0000| [069ceea7da6670905e5894d33b344e983ab70d0c] | committer: Derek Buitenhuis

timefilter: Fix typo in allocation failure message

Signed-off-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=069ceea7da6670905e5894d33b344e983ab70d0c
---

 libavdevice/timefilter.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavdevice/timefilter.c b/libavdevice/timefilter.c
index b4133e0..9d38f93 100644
--- a/libavdevice/timefilter.c
+++ b/libavdevice/timefilter.c
@@ -126,7 +126,7 @@ int main(void)
                         double error   = 0;
                         TimeFilter *tf = ff_timefilter_new(1, par0, par1);
                         if (!tf) {
-                            printf("Could not alocate memory for timefilter.\n");
+                            printf("Could not allocate memory for timefilter.\n");
                             exit(1);
                         }
                         for (i = 0; i < SAMPLES; i++) {



More information about the ffmpeg-cvslog mailing list