comparison libmpdemux/demuxer.c @ 13686:f1f20b06aa4a

Remove redundant ASF status line, there is another for all formats.
author diego
date Tue, 19 Oct 2004 01:21:54 +0000
parents 2299f20215a4
children 39004f891def
comparison
equal deleted inserted replaced
13685:ebd158d142f7 13686:f1f20b06aa4a
1280 sh_video=NULL; 1280 sh_video=NULL;
1281 //printf("ASF: missing video stream!? contact the author, it may be a bug :(\n"); 1281 //printf("ASF: missing video stream!? contact the author, it may be a bug :(\n");
1282 } else { 1282 } else {
1283 sh_video=d_video->sh;sh_video->ds=d_video; 1283 sh_video=d_video->sh;sh_video->ds=d_video;
1284 sh_video->fps=1000.0f; sh_video->frametime=0.001f; // 1ms 1284 sh_video->fps=1000.0f; sh_video->frametime=0.001f; // 1ms
1285 mp_msg(MSGT_DEMUXER,MSGL_INFO,"VIDEO: [%.4s] %dx%d %dbpp\n",
1286 (char *)&sh_video->bih->biCompression,
1287 sh_video->bih->biWidth,
1288 sh_video->bih->biHeight,
1289 sh_video->bih->biBitCount);
1290 // sh_video->i_bps=10*asf_packetsize; // FIXME! 1285 // sh_video->i_bps=10*asf_packetsize; // FIXME!
1291 } 1286 }
1292 } 1287 }
1293 if(d_audio->id!=-2){ 1288 if(d_audio->id!=-2){
1294 mp_msg(MSGT_DEMUXER,MSGL_V,MSGTR_ASFSearchingForAudioStream,d_audio->id); 1289 mp_msg(MSGT_DEMUXER,MSGL_V,MSGTR_ASFSearchingForAudioStream,d_audio->id);