mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-03 18:37:46 +00:00
examples: fix a typo in an error message
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
This commit is contained in:
parent
706af9227b
commit
a91f1023bc
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue