diff options
author | Aleksandr Slobodeniuk <alenuke@yandex.ru> | 2016-12-02 15:21:12 +0300 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-12-02 11:59:08 -0500 |
commit | a91f1023bc06091ef84dce0f1e12b72d7f3ba3ca (patch) | |
tree | 0e02064f0bc13b055d00e77f83b7e49b10c03a34 /doc | |
parent | 706af9227b58657c73e3a4df3689da734f010500 (diff) | |
download | ffmpeg-streaming-a91f1023bc06091ef84dce0f1e12b72d7f3ba3ca.zip ffmpeg-streaming-a91f1023bc06091ef84dce0f1e12b72d7f3ba3ca.tar.gz |
examples: fix a typo in an error message
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/transcode_aac.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |