Skip to content

Commit b640fe5

Browse files
committed
docs: update README.md
1 parent b01bfe0 commit b640fe5

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

README.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ application that runs a number of test suites with the supported decoders. Its
88
purpose is to check different decoder implementations against known test suites
99
with known and proven results. It was originally designed to check the
1010
conformance of H.265/HEVC decoders, but it also supports H.264/AVC, H.266/VVC,
11-
VP8, VP9, AV1 and AAC. It can easily be extended to add more decoders and test
11+
VP8, VP9, AV1, MPEG2 video and AAC. It can easily be extended to add more decoders and test
1212
suites.
1313

1414
## Table of Contents
@@ -191,6 +191,16 @@ JVET-VVC_draft6
191191
Codec: H.266
192192
Description: JVET VVC draft6
193193
Test vectors: 282
194+
195+
MPEG2_VIDEO-422
196+
Codec: MPEG2_VIDEO
197+
Description: ISO IEC 13818-4 MPEG2 video 422 profile test suite
198+
Test vectors: 9
199+
200+
MPEG2_VIDEO-MAIN
201+
Codec: MPEG2_VIDEO
202+
Description: ISO IEC 13818-4 MPEG2 video main profile test suite
203+
Test vectors: 43
194204

195205
CHROMIUM-10bit-AV1-TEST-VECTORS
196206
Codec: AV1
@@ -305,6 +315,10 @@ H.266
305315
GStreamer-H.266-VVdeC-Gst1.0: GStreamer H.266 VVdeC decoder for GStreamer 1.0
306316
VVCSoftware_VTM-H266: VVCSoftware_VTM H.266/VVC reference decoder
307317
VVdeC-H266: VVdeC H.266/VVC decoder
318+
319+
MPEG2_VIDEO
320+
FFmpeg-MPEG2_VIDEO: FFmpeg MPEG2 VIDEO SW decoder
321+
Fluendo-MPEG2_VIDEO-SW-Gst1.0: Fluendo MPEG2 VIDEO SW decoder for GStreamer 1.0
308322

309323
VP8
310324
FFmpeg-VP8: FFmpeg VP8 SW decoder
@@ -378,6 +392,7 @@ AAC
378392
- [H.266/VVC](https://www.itu.int/wftp3/av-arch/jvet-site/bitstream_exchange/VVC/draft_conformance/).
379393
- [VP8](https://github.com/webmproject/vp8-test-vectors).
380394
- [VP9](https://storage.googleapis.com/downloads.webmproject.org/test_data/libvpx).
395+
- [MPEG2 VIDEO](https://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_IEC_13818-4_2004_Conformance_Testing/Video/).
381396

382397
## Decoders
383398

@@ -388,14 +403,15 @@ AAC
388403
decoder for H.265/HEVC.
389404
- [JCT-VT H.266/VVC](https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM) as reference
390405
decoder for H.266/VVC.
391-
- Fluendo's proprietary decoders for H.264/AVC and H.265/HEVC that are included
406+
- Fluendo's proprietary decoders for MPEG2 video, H.264/AVC and H.265/HEVC that are included
392407
in [Fluendo Codec
393408
Pack](https://fluendo.com/en/products/enterprise/fluendo-codec-pack/).
394409
- [GStreamer's](https://gstreamer.freedesktop.org/) for H.266/VVC.
395410
- [GStreamer's](https://gstreamer.freedesktop.org/) for H.265/HEVC.
396411
- [GStreamer's](https://gstreamer.freedesktop.org/) for H.264/AVC.
397412
- [FFmpeg's](https://FFmpeg.org) for H.265/HEVC.
398413
- [FFmpeg's](https://FFmpeg.org) for H.264/AVC.
414+
- [FFmpeg's](https://FFmpeg.org) for MPEG2 video.
399415
- [libvpx's](https://github.com/webmproject/libvpx/) for VP8.
400416
- [libvpx's](https://github.com/webmproject/libvpx/) for VP9.
401417
- [aom's](https://aomedia.googlesource.com/aom/) for AV1.
@@ -553,7 +569,7 @@ Check out the JSON format they follow in the [test_suites](https://github.com/fl
553569
directory. Add a new json file within, Fluster will automatically pick it
554570
up.
555571
556-
There is also a [generator script (H.264)](https://github.com/fluendo/fluster/blob/master/scripts/gen_jvt.py), [generator script (H.265)](https://github.com/fluendo/fluster/blob/master/scripts/gen_jct_vc.py), and a [generator script (H.266)](https://github.com/fluendo/fluster/blob/master/scripts/gen_jvet.py) for the [conformance
572+
There is also a [generator script (MPEG2 video)](https://github.com/fluendo/fluster/blob/master/scripts/gen_mpeg2_video.py), [generator script (H.264)](https://github.com/fluendo/fluster/blob/master/scripts/gen_jvt.py), [generator script (H.265)](https://github.com/fluendo/fluster/blob/master/scripts/gen_jct_vc.py), and a [generator script (H.266)](https://github.com/fluendo/fluster/blob/master/scripts/gen_jvet.py) for the [conformance
557573
test suites](#test-suites) that you can use as a base to generate automatically
558574
new ones.
559575

0 commit comments

Comments
 (0)