Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGyan Doshi <ffmpeg@gyani.pro>2018-08-02 08:17:10 +0300
committerGyan Doshi <ffmpeg@gyani.pro>2018-08-02 08:23:03 +0300
commitc9118d4d64a661fddd431a7437994c31eafb32c6 (patch)
treee026bc40670b440f15a9987ee3daef9707cf93cd /libavformat/avs.c
parent481741ece040b0a938099b521fd431d537d7198a (diff)
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
Diffstat (limited to 'libavformat/avs.c')
-rw-r--r--libavformat/avs.c8
1 files changed, 7 insertions, 1 deletions
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,