summaryrefslogtreecommitdiff
path: root/libavcodec/tests
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@googlemail.com>2018-11-12 15:18:12 +0100
committerMark Thompson <sw@jkqxz.net>2018-11-13 21:03:00 +0000
commit959521b58de945ce8aacd4b0ba84958fc192a2c9 (patch)
treeada7832c826d07d9592da9b7f5715c39f6009847 /libavcodec/tests
parent13ee107afd3d5c3fb6888d754b715fef67fec543 (diff)
h264_levels, h264_metadata_bsf: Fix levels typo
profile_idc for level 1b should be 11, not 10. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@googlemail.com> Signed-off-by: Mark Thompson <sw@jkqxz.net>
Diffstat (limited to 'libavcodec/tests')
-rw-r--r--libavcodec/tests/h264_levels.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tests/h264_levels.c b/libavcodec/tests/h264_levels.c
index 794517eb6c..0e00f05af6 100644
--- a/libavcodec/tests/h264_levels.c
+++ b/libavcodec/tests/h264_levels.c
@@ -102,7 +102,7 @@ static const struct {
// Check level 1b.
{ 32 * 1200, 66, 10 },
{ 32 * 1500, 100, 10 },
- { 96 * 1200, 66, 10 },
+ { 96 * 1200, 66, 11 },
{ 96 * 1500, 100, 9 },
{ 144 * 1200, 66, 11 },
{ 144 * 1500, 100, 11 },