[转贴]How to get the largest available continues memory block

原文地址: http://blog.kalmbachnet.de/?postid=9

Some applications require a huge amount of continues memory. And sometimes, windows is not able to satisfy the request.

To find out the reason of why the virtual memory is badly splited and to get the size of the larges continous memory block, you can use the following code to get the info about the virtual address space:


 #include <stdio.h>
 #include <windows.h>
 #include <tchar.h>
 #include <psapi.h>
 #pragma comment(lib, "psapi.lib")

  void PrintMemInfo(MEMORY_BASIC_INFORMATION &mbi)
  {
    if (mbi.State != MEM_FREE)
      return;
    _tprintf(_T("BaseAddress      : 0x%8.8X, 0x%8.8X, 0x%8.8X/n"), 
      mbi.BaseAddress, mbi.AllocationBase, mbi.AllocationProtect);
    _tprintf(_T("RegionSize       : 0x%8.8X/n"), mbi.RegionSize);
    _tprintf(_T("State            : "));
    switch(mbi.State)
    {
    case MEM_COMMIT:
      _tprintf(_T("Commit/n"));
      break;
    case MEM_FREE:
      _tprintf(_T("Free/n"));
      break;
    case MEM_RESERVE:
      _tprintf(_T("Reserve/n"));
      break;
    default:
      _tprintf(_T("Unknown/n"));
      break;
    }
    _tprintf(_T("Type             : "));
    switch(mbi.Type)
    {
    case MEM_IMAGE:
      _tprintf(_T("Image/n"));
      break;
    case MEM_MAPPED:
      _tprintf(_T("Mapped/n"));
      break;
    case MEM_PRIVATE:
      _tprintf(_T("Private/n"));
      break;
    default:
      _tprintf(_T("Unknown (%d)/n"), mbi.Type);
      break;
    }
    _tprintf(_T("/n"));
  }

  void PrintModules( DWORD processID )
  {
    HMODULE hMods[ 1024 ];
    HANDLE hProcess;
    DWORD cbNeeded;
    unsigned int i;
    _tprintf( _T("/nProcess ID: %u/n"), processID );
    hProcess = OpenProcess(PROCESS_QUERY_INFORMATION |PROCESS_VM_READ, FALSE, processID);
    if (NULL  hProcess)
      return;
    if( EnumProcessModules(hProcess, hMods, sizeof(hMods), &cbNeeded))
    {
      for ( i = 0; i < (cbNeeded / sizeof(HMODULE)); i++ )
      {
        TCHAR szModName[MAX_PATH];
        if ( GetModuleFileNameEx( hProcess, hMods[i], szModName, sizeof(szModName)))
        {
          _tprintf(_T("/t%s (0x%08X)/n"), szModName, hMods[i] );
        }
      }
    }
    CloseHandle( hProcess );
  }

  SIZE_T GetLargestFreeMemRegion(LPVOID *lpBaseAddr, bool showMemInfo)
  {
    SYSTEM_INFO systemInfo;
    GetSystemInfo(&systemInfo);
    VOID *p = 0;
    MEMORY_BASIC_INFORMATION mbi;
    SIZE_T largestSize = 0;
    while(p < systemInfo.lpMaximumApplicationAddress)
    {
      SIZE_T dwRet = VirtualQuery(p, &mbi, sizeof(mbi));
      if (dwRet > 0)
      {
        if (showMemInfo)
          PrintMemInfo(mbi);
        if (mbi.State  MEM_FREE)
        {
          if (largestSize < mbi.RegionSize)
          {
            largestSize = mbi.RegionSize;
            if (lpBaseAddr != NULL)
              *lpBaseAddr = mbi.BaseAddress;
          }
        }
        p = (void*) (((char*)p) + mbi.RegionSize);
      }
      else
      {
        if (showMemInfo)
          _tprintf(_T(”### VirtualQuery failed (%p)/n”), p);
        p = (void*) (((char*)p) + systemInfo.dwPageSize);
      }
    }
    return largestSize;
  }

  int _tmain()
  {
    LPVOID baseAddr;
    SIZE_T ls = GetLargestFreeMemRegion(&baseAddr, true);
    PrintModules(GetCurrentProcessId());
    _tprintf(_T(”/nLargest Free Region: 0x%8.8X bytes at 0x%8.8X/n”), ls, baseAddr);
    return 0;
  }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
To freeze the video from a video stream in GStreamer, you can use the "tee" element to split the video stream into two branches. One branch continues to display the video normally, while the other branch is passed through a "queue" element to buffer frames. When you want to freeze the video, you can use the "valve" element to stop the flow of frames from the first branch, and then use the "valve" element on the second branch to allow a single frozen frame to be displayed. Here is an example pipeline: ``` gst-launch-1.0 videotestsrc ! tee name=t \ t. ! queue ! valve name=v1 ! videoconvert ! autovideosink \ t. ! valve name=v2 ! videoconvert ! autovideosink ``` In this pipeline, the "videotestsrc" element generates a test video stream. The "tee" element splits the stream into two branches, named "t". The first branch continues to display the video normally, while the second branch is passed through a "queue" element to buffer frames. The "valve" elements are used to control the flow of the streams. The "v1" valve allows the first branch to flow normally. The "v2" valve is initially closed, which prevents the frozen frame from being displayed. To freeze the video, you can send a message to the "v1" valve to close it, which stops the flow of frames from the first branch. Then, you can send a message to the "v2" valve to open it, which allows a single frozen frame to be displayed. Here is an example command to freeze the video: ``` gst-launch-1.0 -e --gst-debug-level=3 \ videotestsrc ! tee name=t \ t. ! queue ! valve name=v1 ! videoconvert ! autovideosink \ t. ! valve name=v2 ! videoconvert ! autovideosink \ && sleep 5 \ && gst-launch-1.0 -e --gst-debug-level=3 \ valve name=v1 drop=true ! fakesink \ && gst-launch-1.0 -e --gst-debug-level=3 \ valve name=v2 drop=false ! fakesink ``` This command runs the pipeline and displays the video normally. After 5 seconds, it sends a message to the "v1" valve to close it, which stops the flow of frames from the first branch. Then, it sends a message to the "v2" valve to open it, which allows a single frozen frame to be displayed. Finally, it sends messages to both valves to drop all remaining frames and stop the pipeline.

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值