comparison src/cue/cuesheet.c @ 1510:3a252050736c

replace tuple_formatter_process_string() with tuple_formatter_make_title_string() except that for streamings.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Tue, 21 Aug 2007 17:11:59 +0900
parents e8330e6bd0ba
children c8c725957643
comparison
equal deleted inserted replaced
1509:3b3fe8afc42e 1510:3a252050736c
323 else 323 else
324 tuple = get_tuple_uri(uri); 324 tuple = get_tuple_uri(uri);
325 325
326 g_return_if_fail(tuple != NULL); 326 g_return_if_fail(tuple != NULL);
327 327
328 *title = tuple_formatter_process_string(tuple, get_gentitle_format()); 328 *title = tuple_formatter_make_title_string(tuple, get_gentitle_format());
329 *length = tuple_get_int(tuple, "length"); 329 *length = tuple_get_int(tuple, "length");
330 330
331 tuple_free(tuple); 331 tuple_free(tuple);
332 } 332 }
333 333