1
mirror of https://github.com/mpv-player/mpv synced 2024-07-19 20:54:13 +02:00

macosx_application: refactor filename escape

Use Objective-C's new literal syntax to make the code simpler.
This commit is contained in:
Stefano Pigozzi 2013-05-29 23:56:41 +02:00
parent 3789e1bebf
commit 8b40494e93

View File

@ -58,22 +58,16 @@ static pthread_t playback_thread_id;
@synthesize keyFIFO = _key_fifo;
@synthesize menuItems = _menu_items;
struct escape_couple {
NSString *in;
NSString *out;
};
static struct escape_couple escapes[] = {
{ @"\\", @"\\\\" },
{ @"\"", @"\\\"" },
{ NULL, NULL }
};
static NSString *escape_loadfile_name(NSString *input)
{
for (int i = 0; escapes[i].out; i++) {
input = [input stringByReplacingOccurrencesOfString:escapes[i].in
withString:escapes[i].out];
NSArray *mappings = @[
@{ @"in": @"\\", @"out": @"\\\\" },
@{ @"in": @"\"", @"out": @"\\\"" },
];
for (NSDictionary *mapping in mappings) {
input = [input stringByReplacingOccurrencesOfString:mapping[@"in"]
withString:mapping[@"out"]];
}
return input;