comparison libmpdemux/video.c @ 7302:7d32189dbae4

typo (checking for mpeg twice, instead of mpeg & MPEG)
author michael
date Fri, 06 Sep 2002 22:36:55 +0000
parents 79fb883d9769
children b2445802532c
comparison
equal deleted inserted replaced
7301:4a0a7a6bfda4 7302:7d32189dbae4
58 (sh_video->format == mmioFOURCC('m','p','g','1')) || 58 (sh_video->format == mmioFOURCC('m','p','g','1')) ||
59 (sh_video->format == mmioFOURCC('M','P','G','1')) || 59 (sh_video->format == mmioFOURCC('M','P','G','1')) ||
60 (sh_video->format == mmioFOURCC('m','p','g','2')) || 60 (sh_video->format == mmioFOURCC('m','p','g','2')) ||
61 (sh_video->format == mmioFOURCC('M','P','G','2')) || 61 (sh_video->format == mmioFOURCC('M','P','G','2')) ||
62 (sh_video->format == mmioFOURCC('m','p','e','g')) || 62 (sh_video->format == mmioFOURCC('m','p','e','g')) ||
63 (sh_video->format == mmioFOURCC('m','p','e','g'))) 63 (sh_video->format == mmioFOURCC('M','P','E','G')))
64 { 64 {
65 int saved_pos, saved_type; 65 int saved_pos, saved_type;
66 66
67 /* demuxer pos saving is required for libavcodec mpeg decoder as it's 67 /* demuxer pos saving is required for libavcodec mpeg decoder as it's
68 reading the mpeg header self! */ 68 reading the mpeg header self! */