diff mbox

[FFmpeg-devel] avformat/avs: add descriptive name and url

Message ID 24f62089-210b-f009-4007-2e41fede6abf@gmail.com
State Accepted
Commit c9118d4d64a661fddd431a7437994c31eafb32c6
Headers show

Commit Message

Gyan Aug. 2, 2018, 5:24 a.m. UTC
From c9118d4d64a661fddd431a7437994c31eafb32c6 Mon Sep 17 00:00:00 2001
From: Gyan Doshi <ffmpeg@gyani.pro>
Date: Thu, 2 Aug 2018 10:47:10 +0530
Subject: [PATCH] avformat/avs: add descriptive name and url

AVS now more commonly refers to the Chinese AVS format. This demuxer
processes video files for Creature Shock game
---
 libavformat/avs.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Comments

Paul B Mahol Aug. 2, 2018, 8:43 a.m. UTC | #1
On 8/2/18, Gyan Doshi <gyandoshi@gmail.com> wrote:
> {no text body}

LGTM
Gyan Aug. 2, 2018, 8:52 a.m. UTC | #2
Pushed as c9118d4d64a661fddd431a7437994c31eafb32c6
diff mbox

Patch

diff --git a/libavformat/avs.c b/libavformat/avs.c
index 763ba63f64..62f5a42ac9 100644
--- a/libavformat/avs.c
+++ b/libavformat/avs.c
@@ -19,6 +19,12 @@ 
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+/**
+ * @file
+ * Argonaut Games' Creature Shock demuxer
+ * @see http://wiki.multimedia.cx/index.php?title=AVS
+ */
+
 #include "avformat.h"
 #include "voc.h"
 
@@ -225,7 +231,7 @@  static int avs_read_close(AVFormatContext * s)
 
 AVInputFormat ff_avs_demuxer = {
     .name           = "avs",
-    .long_name      = NULL_IF_CONFIG_SMALL("AVS"),
+    .long_name      = NULL_IF_CONFIG_SMALL("Argonaut Games Creature Shock"),
     .priv_data_size = sizeof(AvsFormat),
     .read_probe     = avs_probe,
     .read_header    = avs_read_header,