Skip to content

H264 decoding optimized for getting motion vectors only without the actual decoded images

License

Unknown and 3 other licenses found

Licenses found

Unknown
LICENSE.md
GPL-2.0
COPYING.GPLv2
GPL-3.0
COPYING.GPLv3
LGPL-3.0
COPYING.LGPLv3
Notifications You must be signed in to change notification settings

JohannesGajdosikPKE/FFmpeg

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

This code is a fork of the popular ffmpeg. The goal is to crate a library that can do nothing but extract the motion vectors of H264 streams at high speed.

I build it like that:

Linux:

./configure --enable-static --disable-everything --disable-doc --disable-swresample --disable-avfilter --disable-avdevice --disable-avformat --disable-swscale --disable-autodetect --disable-programs --enable-decoder=h264 --enable-parser=mpegvideo --disable-iconv make -j8

Windows crosscompiling:

./configure --arch=x86_64 --target-os=mingw32 --cross-prefix=x86_64-w64-mingw32- --enable-static --disable-everything --disable-doc --disable-swresample --disable-avfilter --disable-avdevice --disable-avformat --disable-swscale --disable-autodetect --disable-programs --enable-decoder=h264 --enable-parser=mpegvideo --disable-iconv make -j8

In the H264MVExtract subdirectory there is a wrapper library and a test program. Compile instructions are in the respective source files.

About

H264 decoding optimized for getting motion vectors only without the actual decoded images

Topics

Resources

License

Unknown and 3 other licenses found

Licenses found

Unknown
LICENSE.md
GPL-2.0
COPYING.GPLv2
GPL-3.0
COPYING.GPLv3
LGPL-3.0
COPYING.LGPLv3

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 87.6%
  • Assembly 6.7%
  • Objective-C 3.8%
  • Makefile 1.3%
  • C++ 0.5%
  • Shell 0.1%