summaryrefslogtreecommitdiff
path: root/doc/examples/transcode_aac.c
diff options
context:
space:
mode:
authorАлександр Слободенюк <alexander.slobodeniuk@bramtech.ru>2016-11-30 13:31:58 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-12-01 12:53:45 +0100
commit3aa1ff30f3f44a2ee980556a9bd6c0bc7d9087ac (patch)
tree2c1ac7f539279b3247f236b7a70c3fa69c10d9b3 /doc/examples/transcode_aac.c
parent4d57ca51d7afb05bfa8c9a889822253dfc239a0d (diff)
doc/examples/transcode_aac: fix a typo
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'doc/examples/transcode_aac.c')
-rw-r--r--doc/examples/transcode_aac.c2
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;