From: Andre Noll Date: Tue, 23 Oct 2007 15:37:38 +0000 (+0200) Subject: aft.c: Kill somce dead code. X-Git-Tag: v0.3.0~248 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=54a480aef5bd11e922c3c2339bb207334c170df8;ds=sidebyside aft.c: Kill somce dead code. --- diff --git a/aft.c b/aft.c index ed9d2584..99b972c9 100644 --- a/aft.c +++ b/aft.c @@ -595,30 +595,6 @@ int get_afhi_of_row(const struct osl_row *row, struct audio_format_info *afhi) return 1; } -#if 0 -/** - * Get the chunk table of an audio file, given a row of the audio file table. - * - * \param row Pointer to a row of the audio file table. - * \param afhi Result pointer. - * - * \return The return value of the underlying call to osl_open_disk_object(). - * - * \sa get_afhi_of_row(). - */ -static int get_chunk_table_of_row(const struct osl_row *row, struct audio_format_info *afhi) -{ - struct osl_object obj; - int ret = osl_open_disk_object(audio_file_table, row, AFTCOL_CHUNKS, - &obj); - if (ret < 0) - return ret; - ret = load_chunk_info(&obj, afhi); - osl_close_disk_object(&obj); - return ret; -} -#endif - /* returns shmid on success */ static int save_afd(struct audio_file_data *afd) {