comparison libmpdemux/asf_streaming.c @ 3727:deba2b4fe4b4

As nobody fixed this yet: "asf_streaming.c: In function asf_http_request': asf_streaming.c:414: warning: too few arguments for format asf_streaming.c:431: warning: too few arguments for format"
author pl
date Tue, 25 Dec 2001 11:40:10 +0000
parents 314987c0aaf4
children 879a668ee540
comparison
equal deleted inserted replaced
3726:1acf2f1f9dc8 3727:deba2b4fe4b4
409 } 409 }
410 } 410 }
411 } 411 }
412 if(as < 0) { 412 if(as < 0) {
413 if(audio_id > 0) 413 if(audio_id > 0)
414 printf("Audio stream %d don't exist\n"); 414 printf("Audio stream %d don't exist\n", as);
415 as = asf_http_ctrl->audio_streams[0]; 415 as = asf_http_ctrl->audio_streams[0];
416 } 416 }
417 ptr += sprintf(ptr, " ffff:%d:0",as); 417 ptr += sprintf(ptr, " ffff:%d:0",as);
418 asf_nb_stream++; 418 asf_nb_stream++;
419 } 419 }
426 } 426 }
427 } 427 }
428 } 428 }
429 if(vs < 0) { 429 if(vs < 0) {
430 if(video_id > 0) 430 if(video_id > 0)
431 printf("Video stream %d don't exist\n"); 431 printf("Video stream %d don't exist\n",vs);
432 vs = asf_http_ctrl->video_streams[0]; 432 vs = asf_http_ctrl->video_streams[0];
433 } 433 }
434 ptr += sprintf( ptr, " ffff:%d:0",vs); 434 ptr += sprintf( ptr, " ffff:%d:0",vs);
435 asf_nb_stream++; 435 asf_nb_stream++;
436 } 436 }