From patchwork Wed Nov 30 10:31:58 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?0JDQu9C10LrRgdCw0L3QtNGAINCh0LvQvtCx0L7QtNC10L3RjtC6?= X-Patchwork-Id: 1625 Delivered-To: ffmpegpatchwork@gmail.com Received: by 10.103.65.86 with SMTP id o83csp767421vsa; Wed, 30 Nov 2016 22:25:08 -0800 (PST) X-Received: by 10.28.208.203 with SMTP id h194mr30689669wmg.45.1480573508744; Wed, 30 Nov 2016 22:25:08 -0800 (PST) Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org. [79.124.17.100]) by mx.google.com with ESMTP id g78si10743463wme.5.2016.11.30.22.25.08; Wed, 30 Nov 2016 22:25:08 -0800 (PST) Received-SPF: pass (google.com: domain of ffmpeg-devel-bounces@ffmpeg.org designates 79.124.17.100 as permitted sender) client-ip=79.124.17.100; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@bramtech.ru; spf=pass (google.com: domain of ffmpeg-devel-bounces@ffmpeg.org designates 79.124.17.100 as permitted sender) smtp.mailfrom=ffmpeg-devel-bounces@ffmpeg.org Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 5BE35689BCC; Thu, 1 Dec 2016 08:24:58 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from nix.bramtech.ru (nix.bramtech.ru [80.250.81.205]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 43535689BCC for ; Wed, 30 Nov 2016 12:31:53 +0200 (EET) Received: from SLOBODENIUK.int.bramtech.ru (SLOBODENIUK.int.bramtech.ru [10.0.1.144]) by nix.bramtech.ru (Postfix) with ESMTPS id 9FEBF61C2A for ; Wed, 30 Nov 2016 13:31:58 +0300 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=bramtech.ru; s=mail201510; t=1480501918; bh=+wKCRQGA2/8NViD4FF752k4pTJ5L8WR7tilVg3uT7nk=; h=Date:From:Message-ID:To:Subject:MIME-Version:Content-Type: Content-Transfer-Encoding; b=lcbGrWONS+/Iu5P0xf9D2HQRB5kLkn6aerpRhnpTgk7rkqozmyYIF7V8gTUofom5v aoz1quY2M5Dtspy+oz2c0Zum8EF1EWqayHajt+v+e7LiExq5I86UmSX8ChQFo29BlG +wfA2i5mK+VPJEAVuJRU3grqd0yIZaibsOwUQs08= Date: Wed, 30 Nov 2016 13:31:58 +0300 From: =?windows-1251?B?wOvl6vHg7eTwINHr7uHu5OXt/uo=?= Organization: BRAM Technologies X-Priority: 3 (Normal) Message-ID: <11110004714.20161130133158@bramtech.ru> To: ffmpeg-devel@ffmpeg.org MIME-Version: 1.0 X-Mailman-Approved-At: Thu, 01 Dec 2016 08:24:57 +0200 Subject: [FFmpeg-devel] [PATCH] examples: fix a typo X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" --- doc/examples/transcode_aac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;