Proper condition for extracting the FPS from MPEG-1/2 video.

This commit is contained in:
Moritz Bunkus 2004-12-28 20:47:24 +00:00
parent d138b60688
commit c976bcf209

View File

@ -150,7 +150,7 @@ video_packetizer_c::process(memory_c &mem,
}
if ((fps < 0.0) &&
(mpeg_video == MPEG_VIDEO_V1) || (mpeg_video == MPEG_VIDEO_V2))
((mpeg_video == MPEG_VIDEO_V1) || (mpeg_video == MPEG_VIDEO_V2)))
extract_mpeg1_2_fps(mem.data, mem.size);
if ((mpeg_video == MPEG_VIDEO_V4_LAYER_2) &&