Video Processing Study/Video Study

JM Software build 하기, VSCode 에 디버깅 환경 셋업하기 (h 264 reference SW)

반응형

설치방법

다음 링크에서 다운로드 git : https://github.com/shihuade/JM

JM 폴더에서, Makefile 을열고, DBG 를 1 로 수정합니다.

make 합니다.

 

VSCode setup

lencode.dbg.exe -f <.cfg>

launch.json 셋팅.

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "type": "cppdbg",
            "request": "launch",
            "name": "Debug",
            "program": "${workspaceFolder}/bin/lencod.dbg.exe",
            "args": [
                "-f","encoder.cfg"
            ],
            "cwd": "${workspaceFolder}/bin/"
        }
    ]
}

원하는대로 break point 잘 찍힙니다.

반응형