mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
removed useless #if1s added too long time ago
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21936 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
6443cc76f5
commit
12233b5063
@ -508,15 +508,12 @@ static int demux_mpg_probe(demuxer_t *demuxer) {
|
|||||||
}
|
}
|
||||||
file_format=DEMUXER_TYPE_MPEG_ES; // <-- hack is here :)
|
file_format=DEMUXER_TYPE_MPEG_ES; // <-- hack is here :)
|
||||||
} else
|
} else
|
||||||
#if 1
|
|
||||||
// fuzzy mpeg4-es detection. do NOT enable without heavy testing of mpeg formats detection!
|
// fuzzy mpeg4-es detection. do NOT enable without heavy testing of mpeg formats detection!
|
||||||
if(num_elementary_packets1B6>3 && num_elementary_packets12x>=1 &&
|
if(num_elementary_packets1B6>3 && num_elementary_packets12x>=1 &&
|
||||||
num_elementary_packetsPES==0 && num_elementary_packets100<=num_elementary_packets12x &&
|
num_elementary_packetsPES==0 && num_elementary_packets100<=num_elementary_packets12x &&
|
||||||
demuxer->synced<2) {
|
demuxer->synced<2) {
|
||||||
file_format=DEMUXER_TYPE_MPEG4_ES;
|
file_format=DEMUXER_TYPE_MPEG4_ES;
|
||||||
} else
|
} else
|
||||||
#endif
|
|
||||||
#if 1
|
|
||||||
// fuzzy h264-es detection. do NOT enable without heavy testing of mpeg formats detection!
|
// fuzzy h264-es detection. do NOT enable without heavy testing of mpeg formats detection!
|
||||||
if((num_h264_slice>3 || (num_h264_dpa>3 && num_h264_dpb>3 && num_h264_dpc>3)) &&
|
if((num_h264_slice>3 || (num_h264_dpa>3 && num_h264_dpb>3 && num_h264_dpc>3)) &&
|
||||||
/* FIXME num_h264_sps>=1 && */ num_h264_pps>=1 && num_h264_idr>=1 &&
|
/* FIXME num_h264_sps>=1 && */ num_h264_pps>=1 && num_h264_idr>=1 &&
|
||||||
@ -524,7 +521,6 @@ static int demux_mpg_probe(demuxer_t *demuxer) {
|
|||||||
demuxer->synced<2) {
|
demuxer->synced<2) {
|
||||||
file_format=DEMUXER_TYPE_H264_ES;
|
file_format=DEMUXER_TYPE_H264_ES;
|
||||||
} else
|
} else
|
||||||
#endif
|
|
||||||
{
|
{
|
||||||
if(demuxer->synced==2)
|
if(demuxer->synced==2)
|
||||||
mp_msg(MSGT_DEMUXER,MSGL_ERR,"MPEG: " MSGTR_MissingVideoStreamBug);
|
mp_msg(MSGT_DEMUXER,MSGL_ERR,"MPEG: " MSGTR_MissingVideoStreamBug);
|
||||||
|
Loading…
Reference in New Issue
Block a user