You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
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
This commit is contained in:
@@ -19,6 +19,12 @@
|
|||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* 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 "avformat.h"
|
||||||
#include "voc.h"
|
#include "voc.h"
|
||||||
|
|
||||||
@@ -225,7 +231,7 @@ static int avs_read_close(AVFormatContext * s)
|
|||||||
|
|
||||||
AVInputFormat ff_avs_demuxer = {
|
AVInputFormat ff_avs_demuxer = {
|
||||||
.name = "avs",
|
.name = "avs",
|
||||||
.long_name = NULL_IF_CONFIG_SMALL("AVS"),
|
.long_name = NULL_IF_CONFIG_SMALL("Argonaut Games Creature Shock"),
|
||||||
.priv_data_size = sizeof(AvsFormat),
|
.priv_data_size = sizeof(AvsFormat),
|
||||||
.read_probe = avs_probe,
|
.read_probe = avs_probe,
|
||||||
.read_header = avs_read_header,
|
.read_header = avs_read_header,
|
||||||
|
Reference in New Issue
Block a user