comparison rtsp.c @ 2053:4611fce2f394 libavformat

properly compile code for REDIR_DEMUXER
author alex
date Thu, 26 Apr 2007 23:40:36 +0000
parents 5b54f43626d0
children 9f93361c3dc2
comparison
equal deleted inserted replaced
2052:3d04317ab396 2053:4611fce2f394
1397 sdp_read_packet, 1397 sdp_read_packet,
1398 sdp_read_close, 1398 sdp_read_close,
1399 }; 1399 };
1400 #endif 1400 #endif
1401 1401
1402 #ifdef CONFIG_REDIR_DEMUXER
1402 /* dummy redirector format (used directly in av_open_input_file now) */ 1403 /* dummy redirector format (used directly in av_open_input_file now) */
1403 static int redir_probe(AVProbeData *pd) 1404 static int redir_probe(AVProbeData *pd)
1404 { 1405 {
1405 const char *p; 1406 const char *p;
1406 p = pd->buf; 1407 p = pd->buf;
1459 redir_probe, 1460 redir_probe,
1460 NULL, 1461 NULL,
1461 NULL, 1462 NULL,
1462 NULL, 1463 NULL,
1463 }; 1464 };
1465 #endif