From d54a597c8cc7dbb03b9e464e24992bdd7c25ebc9 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Tue, 25 Jan 2005 21:47:19 +0000 Subject: [PATCH] Added test cases for AVC in MP4 with pixel aspect ratio, both with and without B frames. --- tests/results.txt | 2 ++ tests/test-201avc_from_mp4_with_par.rb | 13 +++++++++++++ tests/test-202avc_from_mp4_with_par_bframes.rb | 13 +++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 tests/test-201avc_from_mp4_with_par.rb create mode 100644 tests/test-202avc_from_mp4_with_par_bframes.rb diff --git a/tests/results.txt b/tests/results.txt index a07d3a7a3..3ba224134 100644 --- a/tests/results.txt +++ b/tests/results.txt @@ -47,3 +47,5 @@ T_048X_chapters_ogmstyle:5ecb42d20d78b4f73fc2340a2e4f0803:passed:20040920-192349 T_049ass:0884baa5ebea7b4b8bd7692df7eb3cc7:passed:20040929-113852 T_050X_ass:6aeb4aef55511282630e9f0e69777c46-6aeb4aef55511282630e9f0e69777c46:passed:20040929-113852 T_200mp2_from_mp4:3d4b16d902538100076b3b87876f1413:passed:20040917-185156 +T_201avc_from_mp4_with_par:e8f2d2becffc65592ab541acb8394658:passed:20050125-224528 +T_202avc_from_mp4_with_par_bframes:7cfd0e522b3b54ebdc987626c18be3a4:passed:20050125-224635 diff --git a/tests/test-201avc_from_mp4_with_par.rb b/tests/test-201avc_from_mp4_with_par.rb new file mode 100644 index 000000000..fdd3e723b --- /dev/null +++ b/tests/test-201avc_from_mp4_with_par.rb @@ -0,0 +1,13 @@ +#!/usr/bin/ruby -w + +class T_201avc_from_mp4_with_par < Test + def description + return "mkvmerge / AVC from MP4 with aspect ratio / in(MP4)" + end + + def run + merge("data/mp4/rain_800.mp4") + return hash_tmp + end +end + diff --git a/tests/test-202avc_from_mp4_with_par_bframes.rb b/tests/test-202avc_from_mp4_with_par_bframes.rb new file mode 100644 index 000000000..c55c09597 --- /dev/null +++ b/tests/test-202avc_from_mp4_with_par_bframes.rb @@ -0,0 +1,13 @@ +#!/usr/bin/ruby -w + +class T_202avc_from_mp4_with_par_bframes < Test + def description + return "mkvmerge / AVC from MP4 with aspect ratio & B frames / in(MP4)" + end + + def run + merge("data/mp4/test_2000_inloop.mp4") + return hash_tmp + end +end +