⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 verifydecoder.py

📁 JMVM MPEG MVC/3DAV 测试平台 国际通用标准
💻 PY
字号:

"""
This script verifies that a compressed bitstream decompresses to the
given YUV file.
"""

import sys, os, re, commands
import CommandTools


def VerifyDecoder(argList):
    """
    VerifyDecoder(argList):

    argList: This is a list of arguments passed in on the command line
             by the user.  The name of the program the user executed
             is argList[0], the first argument from the user is
             argList[1], the second argument from the user is
             argList[2], etc.  
    
    This is the main function called when the user starts the script
    from the command line.
    """

    # do some setup

    # then execute decoder using something like the following
    CommandTools.DoCommand(commandString='echo pretending to do command',
                           printCommand=1,
                           printResult=1,
                           writeResultToFile=None)

if (__name__ == "__main__"):
    VerifyDecoder(list(sys.argv))


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -