반응형
설치방법
다음 링크에서 다운로드 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 잘 찍힙니다.
반응형
'Video Processing Study > Video Study' 카테고리의 다른 글
VMAF NEG (0) | 2023.01.26 |
---|---|
알아두면 좋을 영상처리 용어 (Video Codec 혹은 영상 관련 업무를 한다면 도움이 될만한 용어들) (0) | 2022.10.26 |
VMAF (Video Multi-Method Assessment Fusion) (0) | 2022.10.25 |