[FFmpeg-cvslog] avformat/argo_asf: don't check file version

Zane van Iperen git at videolan.org
Tue Aug 11 10:55:49 EEST 2020


ffmpeg | branch: master | Zane van Iperen <zane at zanevaniperen.com> | Mon Aug 10 08:37:47 2020 +1000| [a3e982178734095318dd31971b98b9ed1a1aa682] | committer: Zane van Iperen

avformat/argo_asf: don't check file version

It has no bearing on structure. Determined by looking at the ASF
files from several Argonaut games:
  - FX Fighter,
  - Croc,
  - Croc 2,
  - The Emperor's New Groove, and
  - Disney's Aladdin in Nasira's Revenge

The only versions that appear are 1.1, 1.2, and 2.1, and their
structure is identical.

Reviewed-by: Alexander Strasser <eclipse7 at gmx.net>
Signed-off-by: Zane van Iperen <zane at zanevaniperen.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a3e982178734095318dd31971b98b9ed1a1aa682
---

 libavformat/argo_asf.c | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/libavformat/argo_asf.c b/libavformat/argo_asf.c
index 94d3ae3e09..bb69b01ff4 100644
--- a/libavformat/argo_asf.c
+++ b/libavformat/argo_asf.c
@@ -136,13 +136,6 @@ static int argo_asf_read_header(AVFormatContext *s)
 
     argo_asf_parse_file_header(&asf->fhdr, buf);
 
-    if (!argo_asf_is_known_version(&asf->fhdr)) {
-        avpriv_request_sample(s, "Version %hu.%hu",
-            asf->fhdr.version_major, asf->fhdr.version_minor
-        );
-        return AVERROR_PATCHWELCOME;
-    }
-
     if (asf->fhdr.num_chunks == 0) {
         return AVERROR_INVALIDDATA;
     } else if (asf->fhdr.num_chunks > 1) {



More information about the ffmpeg-cvslog mailing list