diff mbox

[FFmpeg-devel] examples: fix a typo

Message ID 11110004714.20161130133158@bramtech.ru
State Accepted
Commit a91f1023bc06091ef84dce0f1e12b72d7f3ba3ca
Headers show

Commit Message

Александр Слободенюк Nov. 30, 2016, 10:31 a.m. UTC
---
 doc/examples/transcode_aac.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Michael Niedermayer Dec. 1, 2016, 11:53 a.m. UTC | #1
On Wed, Nov 30, 2016 at 01:31:58PM +0300, Александр Слободенюк wrote:
> ---
>  doc/examples/transcode_aac.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

applied

thx

[...]
diff mbox

Patch

diff --git a/doc/examples/transcode_aac.c b/doc/examples/transcode_aac.c
index 9b3ee67..d7947b4 100644
--- a/doc/examples/transcode_aac.c
+++ b/doc/examples/transcode_aac.c
@@ -566,7 +566,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;