diff options
author | Александр Слободенюк <alexander.slobodeniuk@bramtech.ru> | 2016-11-30 13:31:58 +0300 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-12-01 12:53:45 +0100 |
commit | 3aa1ff30f3f44a2ee980556a9bd6c0bc7d9087ac (patch) | |
tree | 2c1ac7f539279b3247f236b7a70c3fa69c10d9b3 | |
parent | 4d57ca51d7afb05bfa8c9a889822253dfc239a0d (diff) | |
download | ffmpeg-3aa1ff30f3f44a2ee980556a9bd6c0bc7d9087ac.tar.gz |
doc/examples/transcode_aac: fix a typo
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-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 9b3ee67695..d7947b496a 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; |