I want to extract the motion vector from the encoded h264 stream without performing a full decode of the frame.
I'm using the FFmpeg library and am aware of extracting the information using the av_frame_get_side_data. Unfortunately, it does a full decode of the frame before providing the AV_FRAME_DATA_MOTION_VECTORS.
Is it possible to parse the h264 to extract out the motion vectors only, ignoring all the other data.