Skip to content
Snippets Groups Projects
Commit a91f1023 authored by Aleksandr Slobodeniuk's avatar Aleksandr Slobodeniuk Committed by Vittorio Giovara
Browse files

examples: fix a typo in an error message

parent 706af922
No related branches found
No related tags found
No related merge requests found
...@@ -580,7 +580,7 @@ static int init_output_frame(AVFrame **frame, ...@@ -580,7 +580,7 @@ static int init_output_frame(AVFrame **frame,
* sure that the audio frame can hold as many samples as specified. * sure that the audio frame can hold as many samples as specified.
*/ */
if ((error = av_frame_get_buffer(*frame, 0)) < 0) { 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)); get_error_text(error));
av_frame_free(frame); av_frame_free(frame);
return error; return error;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment