mp3_dummy.c 327 B

1234567891011121314151617181920
  1. /*
  2. * dummy/none mp3 code
  3. * (C) notaz, 2013
  4. *
  5. * This work is licensed under the terms of MAME license.
  6. * See COPYING file in the top-level directory.
  7. */
  8. #include <stdio.h>
  9. #include "mp3.h"
  10. int mp3dec_start(FILE *f, int fpos_start)
  11. {
  12. return -1;
  13. }
  14. int mp3dec_decode(FILE *f, int *file_pos, int file_len)
  15. {
  16. return -1;
  17. }