diff --git a/MultiSource/Applications/JM/ldecod/ldecod.reference_output.AIX b/MultiSource/Applications/JM/ldecod/ldecod.reference_output.AIX new file mode 100644 --- /dev/null +++ b/MultiSource/Applications/JM/ldecod/ldecod.reference_output.AIX @@ -0,0 +1,34 @@ +----------------------------- JM 12.1 (FRExt) ----------------------------- + Decoder config file : +-------------------------------------------------------------------------- + Input H.264 bitstream : test.264 + Output decoded YUV : Output/test_dec.yuv + Output status file : log.dec + Input reference file : test_rec.yuv +-------------------------------------------------------------------------- +POC must = frame# or field# for SNRs to be correct +-------------------------------------------------------------------------- + Frame POC Pic# QP SnrY SnrU SnrV Y:U:V Time(ms) +-------------------------------------------------------------------------- +0000(I) 0 0 28 0.0000 0.0000 0.0000 4:2:2 0 +0002(P) 4 1 28 0.0000 0.0000 0.0000 4:2:2 0 +0001(B) 2 2 30 0.0000 0.0000 0.0000 4:2:2 0 +0004(P) 8 2 28 0.0000 0.0000 0.0000 4:2:2 0 +0003(B) 6 3 30 0.0000 0.0000 0.0000 4:2:2 0 +0006(P) 12 3 28 0.0000 0.0000 0.0000 4:2:2 0 +0005(B) 10 4 30 0.0000 0.0000 0.0000 4:2:2 0 +0008(P) 16 4 28 0.0000 0.0000 0.0000 4:2:2 0 +0007(B) 14 5 30 0.0000 0.0000 0.0000 4:2:2 0 +0010(P) 20 5 28 0.0000 0.0000 0.0000 4:2:2 0 +0009(B) 18 6 30 0.0000 0.0000 0.0000 4:2:2 0 +0012(P) 24 6 28 0.0000 0.0000 0.0000 4:2:2 0 +0011(B) 22 7 30 0.0000 0.0000 0.0000 4:2:2 0 +0014(P) 28 7 28 0.0000 0.0000 0.0000 4:2:2 0 +0013(B) 26 8 30 0.0000 0.0000 0.0000 4:2:2 0 +-------------------- Average SNR all frames ------------------------------ + SNR Y(dB) : 0.00 + SNR U(dB) : 0.00 + SNR V(dB) : 0.00 +-------------------------------------------------------------------------- + Exit JM 12 (FRExt) decoder, ver 12.1 +exit 0 diff --git a/cmake/modules/SingleMultiSource.cmake b/cmake/modules/SingleMultiSource.cmake --- a/cmake/modules/SingleMultiSource.cmake +++ b/cmake/modules/SingleMultiSource.cmake @@ -107,6 +107,8 @@ set(REFERENCE_OUTPUT ${name}.reference_output.${SIZE_SUFFIX}) elseif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${name}.reference_output.${ENDIAN}-endian) set(REFERENCE_OUTPUT ${name}.reference_output.${ENDIAN}-endian) + elseif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${name}.reference_output.${TARGET_OS}) + set(REFERENCE_OUTPUT ${name}.reference_output.${TARGET_OS}) elseif(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${name}.reference_output) set(REFERENCE_OUTPUT ${name}.reference_output) else()