[FFmpeg-cvslog] examples: fix a typo in an error message

Aleksandr Slobodeniuk git at videolan.org
Sat Apr 8 15:51:37 EEST 2017


ffmpeg | branch: master | Aleksandr Slobodeniuk <alenuke at yandex.ru> | Fri Dec  2 15:21:12 2016 +0300| [a91f1023bc06091ef84dce0f1e12b72d7f3ba3ca] | committer: Vittorio Giovara

examples: fix a typo in an error message

Signed-off-by: Vittorio Giovara <vittorio.giovara at gmail.com>

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

 doc/examples/transcode_aac.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/examples/transcode_aac.c b/doc/examples/transcode_aac.c
index 5c640d9..d547b32 100644
--- a/doc/examples/transcode_aac.c
+++ b/doc/examples/transcode_aac.c
@@ -580,7 +580,7 @@ static int init_output_frame(AVFrame **frame,
      * sure that the audio frame can hold as many samples as specified.
      */
     if ((error = av_frame_get_buffer(*frame, 0)) < 0) {
-        fprintf(stderr, "Could allocate output frame samples (error '%s')\n",
+        fprintf(stderr, "Could not allocate output frame samples (error '%s')\n",
                 get_error_text(error));
         av_frame_free(frame);
         return error;



More information about the ffmpeg-cvslog mailing list