From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 4610E42CEE for ; Tue, 3 May 2022 16:15:41 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 0A3CC68B3D7; Tue, 3 May 2022 19:14:06 +0300 (EEST) Received: from mail-qk1-f176.google.com (mail-qk1-f176.google.com [209.85.222.176]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id DE38168B3BA for ; Tue, 3 May 2022 19:13:55 +0300 (EEST) Received: by mail-qk1-f176.google.com with SMTP id v9so3373181qkp.11 for ; Tue, 03 May 2022 09:13:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=j1xfHNu2QFCAJ4EEs+qJZOVuUu9vH/mRvksIDMD1Fa4=; b=PBz/wt90nE6CXZDEO4Q0pE9ofv3CPyJtgRgXuSRcNd2FMBwcA53oHhqHNCrCjZXMFg 1GdOmlrkWPXmUyUrviA7FYs82TELU41xeZ43aDBIbCKDB+PLQs6cU+0WK26CFtZU7QHY QNznJpuUyxWcZROm0mhWixiBO5LWDoBrrLWx/6KpN9BJzI11b4rQ/jA17V50bs8wVUh8 g7FcoNjIBTIZnrqZ2FcYyw5AkROJIfDOLq+6fW7IQMH312w8zQkxcF+qQpUEfLTss+o2 AaRukJSNsmwbKAZGY/1pmVOzMfFjnlRh86SD3DUCvwDgzJK8ySSYYuS74Yo8t6eYAw/H mrRA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=j1xfHNu2QFCAJ4EEs+qJZOVuUu9vH/mRvksIDMD1Fa4=; b=zfcU3Y7UdWuO+49kMhyOcFLHncpyz5mgmyDmt1ckm7FLe3lqikZwkvj9ViYC2DzkrG jPZHYeghPXAG3xgqeyJx3y6oEY3UIj78cLuSShOopopsPZqwo0rnSA8lu+iwfdz8E+ks IoBZIB22+bILdV2HsOSD4gFjJ7rQ5CM9nubxMnsmV2NB23yp9NQ0nBTqSxAtPyTwj1NS AR/az5c1xayoC7FM+uzwaIFI6gQi7lbzbsjXZDSCjki4WWd518DtLWAoAOldFxYHo8gw oflgWKOzMCvHBOgPNPP8dRku3SVyB+/Gm5jMWbekA+qYmC87C3Wz49SErCuR+W7vqjuT Wbog== X-Gm-Message-State: AOAM531fmw8y7MVXCtuT7F0vHWLPSLpwi5TO3KdDpGpjQTxE7aG/t7FR /6eAjlBQPif1w40YzvtKRxvNKvgL3XUA X-Google-Smtp-Source: ABdhPJxk3mvfPLjF0FK/UaEi43p0cKDgY7Da2JzhaP9PigRPlCdnHSAv6QNjQZVp02RVnrFQ+g8TYw== X-Received: by 2002:ae9:e887:0:b0:69f:9a9d:aa04 with SMTP id a129-20020ae9e887000000b0069f9a9daa04mr12781932qkg.31.1651594434591; Tue, 03 May 2022 09:13:54 -0700 (PDT) Received: from thinkpad.. ([66.220.203.136]) by smtp.gmail.com with ESMTPSA id fp35-20020a05622a50a300b002f39b99f67asm5812731qtb.20.2022.05.03.09.13.53 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 03 May 2022 09:13:54 -0700 (PDT) From: Traian Coza To: ffmpeg-devel@ffmpeg.org Date: Tue, 3 May 2022 12:13:22 -0400 Message-Id: <20220503161328.842587-7-traian.coza@gmail.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220503161328.842587-1-traian.coza@gmail.com> References: <20220503161328.842587-1-traian.coza@gmail.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 06/12] Wrote proper headers X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 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: Traian Coza Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --- libavcodec/text_to_bitmap.c | 9 ++++++--- libavcodec/text_to_bitmap.h | 6 +++--- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/libavcodec/text_to_bitmap.c b/libavcodec/text_to_bitmap.c index 50c72afc55..273564cb67 100644 --- a/libavcodec/text_to_bitmap.c +++ b/libavcodec/text_to_bitmap.c @@ -1,6 +1,9 @@ -// -// Created by traian on 2022-05-02. -// +/** + * text to bitmap support code. + * + * This file contains a function to initiate the functionality for a stream, + * to render any AVSubtitle structure, and to free the structures allocated at the start + */ #include "text_to_bitmap.h" diff --git a/libavcodec/text_to_bitmap.h b/libavcodec/text_to_bitmap.h index 4cba5889f4..37d346ae0c 100644 --- a/libavcodec/text_to_bitmap.h +++ b/libavcodec/text_to_bitmap.h @@ -1,6 +1,6 @@ -// -// Created by traian on 2022-05-02. -// +/** + * text_to_bitmap header file + */ #ifndef FFMPEG_TEXT_TO_BITMAP_H #define FFMPEG_TEXT_TO_BITMAP_H -- 2.34.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".