Mercurial > audlegacy-plugins
comparison src/madplug/fileinfo.c @ 1978:fa9f85cebade
s/vfs_/aud_vfs_/g
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Sun, 07 Oct 2007 00:25:33 -0500 |
parents | f6f5603a0954 |
children | 2ffc6a69fcd1 |
comparison
equal
deleted
inserted
replaced
1977:5a6b60ceaa0f | 1978:fa9f85cebade |
---|---|
594 g_free(tmp); | 594 g_free(tmp); |
595 tmp = NULL; | 595 tmp = NULL; |
596 } | 596 } |
597 #endif | 597 #endif |
598 | 598 |
599 if(!vfs_is_remote(fileurl) && !vfs_file_test(fileurl, G_FILE_TEST_EXISTS)) { | 599 if(!aud_vfs_is_remote(fileurl) && !aud_vfs_file_test(fileurl, G_FILE_TEST_EXISTS)) { |
600 return; | 600 return; |
601 } | 601 } |
602 | 602 |
603 input_init(&info, fileurl, NULL); | 603 input_init(&info, fileurl, NULL); |
604 | 604 |
605 if(audmad_is_remote(fileurl)) { | 605 if(audmad_is_remote(fileurl)) { |
606 info.remote = TRUE; | 606 info.remote = TRUE; |
607 if(vfs_is_streaming(info.infile)) | 607 if(aud_vfs_is_streaming(info.infile)) |
608 return; //file info dialog for remote streaming doesn't make sense. | 608 return; //file info dialog for remote streaming doesn't make sense. |
609 } | 609 } |
610 | 610 |
611 realfn = g_filename_from_uri(fileurl, NULL, NULL); | 611 realfn = g_filename_from_uri(fileurl, NULL, NULL); |
612 utf_filename = str_to_utf8(realfn ? realfn : fileurl); | 612 utf_filename = str_to_utf8(realfn ? realfn : fileurl); |