From patchwork Fri May 31 08:02:20 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Guo, Yejun" X-Patchwork-Id: 13356 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id 0414D4484E1 for ; Fri, 31 May 2019 11:03:37 +0300 (EEST) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id CCDF268A976; Fri, 31 May 2019 11:03:36 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 7211368A93D for ; Fri, 31 May 2019 11:03:30 +0300 (EEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 31 May 2019 01:03:28 -0700 X-ExtLoop1: 1 Received: from yguo18-skl-u1604.sh.intel.com ([10.239.13.25]) by fmsmga006.fm.intel.com with ESMTP; 31 May 2019 01:03:27 -0700 From: "Guo, Yejun" To: ffmpeg-devel@ffmpeg.org Date: Fri, 31 May 2019 16:02:20 +0800 Message-Id: <1559289740-25708-1-git-send-email-yejun.guo@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [FFmpeg-devel] [PATCH] lavu/frame: fix typo for ROI (region of interest) documentation 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 Cc: yejun.guo@intel.com MIME-Version: 1.0 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" there is already a nice patch set to fix the ROI documentation, but it is pending, see https://lists.ffmpeg.org/pipermail/ffmpeg-devel/2019-May/244440.html so just fix this obvious typo that the document does not match the code. Signed-off-by: Guo, Yejun --- libavutil/frame.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/frame.h b/libavutil/frame.h index 8aa3e88..eebb2c0 100644 --- a/libavutil/frame.h +++ b/libavutil/frame.h @@ -212,7 +212,7 @@ typedef struct AVFrameSideData { * self_size specifies the size of this data structure. This value * should be set to sizeof(AVRegionOfInterest). EINVAL is returned if self_size is zero. * - * Number of pixels to discard from the top/bottom/left/right border of + * Number of pixels to discard from the top-left corner of * the frame to obtain the region of interest of the frame. * They are encoder dependent and will be extended internally * if the codec requires an alignment.