diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-02-15 00:26:04 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-02-15 00:28:53 +0100 |
commit | 772b949d8eea8ad74a370aab3926691076e9dcd4 (patch) | |
tree | b5b542696d6f04216ad35b62ca451e3861407b72 | |
parent | 8102a097a5ce4b51fecd01b2615c518b1677a42a (diff) | |
download | ffmpeg-772b949d8eea8ad74a370aab3926691076e9dcd4.tar.gz |
examples/scaling_video: fix typo
-rw-r--r-- | doc/examples/scaling_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/scaling_video.c b/doc/examples/scaling_video.c index 320f4a063a..be2c510ffa 100644 --- a/doc/examples/scaling_video.c +++ b/doc/examples/scaling_video.c @@ -107,7 +107,7 @@ int main(int argc, char **argv) goto end; } - /* buffer is going to be written to rawvideo file, no alignmnet */ + /* buffer is going to be written to rawvideo file, no alignment */ if ((ret = av_image_alloc(dst_data, dst_linesize, dst_w, dst_h, dst_pix_fmt, 1)) < 0) { fprintf(stderr, "Could not allocate destination image\n"); |