Home
last modified time | relevance | path

Searched refs:mp3dec (Results 1 – 25 of 38) sorted by relevance

12

/dports/audio/csound/csound-6.15.0/H/
H A Dmp3dec.h47 int mp3dec_init_file(mp3dec_t mp3dec, int fd, int64_t length, int nogap);
48 int mp3dec_uninit(mp3dec_t mp3dec);
49 int mp3dec_reset(mp3dec_t mp3dec);
50 int mp3dec_configure(mp3dec_t mp3dec, mpadec_config_t *cfg);
51 int mp3dec_get_info(mp3dec_t mp3dec, void *info, int info_type);
52 int mp3dec_decode(mp3dec_t mp3dec, uint8_t *buf, uint32_t bufsize, uint32_t *used);
53 int mp3dec_seek(mp3dec_t mp3dec, int64_t pos, int units);
/dports/games/libretro-picodrive/picodrive-600894e/platform/common/
H A Dmp3_helix.c19 static HMP3Decoder mp3dec; variable
54 err = MP3Decode(mp3dec, &readPtr, &bytesLeft, cdda_out_buffer, 0); in mp3dec_decode()
90 if (mp3dec) in mp3dec_start()
91 MP3FreeDecoder(mp3dec); in mp3dec_start()
92 mp3dec = MP3InitDecoder(); in mp3dec_start()
94 return (mp3dec == 0) ? -1 : 0; in mp3dec_start()
/dports/games/kodi-addon-game.libretro.picodrive/game.libretro.picodrive-1.97.0.19-Matrix/depends/common/picodrive/platform/common/
H A Dmp3_helix.c18 static HMP3Decoder mp3dec; variable
59 err = p_MP3Decode(mp3dec, &readPtr, &bytesLeft, cdda_out_buffer, 0); in mp3dec_decode()
116 if (mp3dec) in mp3dec_start()
117 p_MP3FreeDecoder(mp3dec); in mp3dec_start()
118 mp3dec = p_MP3InitDecoder(); in mp3dec_start()
120 return (mp3dec == 0) ? -1 : 0; in mp3dec_start()
H A Dmp3_minimp3.c16 static mp3dec_t mp3dec; variable
21 mp3dec_init(&mp3dec); in mp3dec_start()
53 len = mp3dec_decode_frame(&mp3dec, readPtr, bytesLeft, cdda_out_buffer, &info); in mp3dec_decode()
/dports/audio/csound/csound-6.15.0/InOut/libmpadec/
H A Dmp3dec.c44 register struct mp3dec_t *mp3 = (struct mp3dec_t *)mp3dec; in mp3dec_init_file()
182 int mp3dec_uninit(mp3dec_t mp3dec) in mp3dec_uninit() argument
184 register struct mp3dec_t *mp3 = (struct mp3dec_t *)mp3dec; in mp3dec_uninit()
197 int mp3dec_reset(mp3dec_t mp3dec) in mp3dec_reset() argument
199 register struct mp3dec_t *mp3 = (struct mp3dec_t *)mp3dec; in mp3dec_reset()
215 int mp3dec_configure(mp3dec_t mp3dec, mpadec_config_t *cfg) in mp3dec_configure() argument
217 register struct mp3dec_t *mp3 = (struct mp3dec_t *)mp3dec; in mp3dec_configure()
229 register struct mp3dec_t *mp3 = (struct mp3dec_t *)mp3dec; in mp3dec_get_info()
251 register struct mp3dec_t *mp3 = (struct mp3dec_t *)mp3dec; in mp3dec_decode()
308 int mp3dec_seek(mp3dec_t mp3dec, int64_t pos, int units) in mp3dec_seek() argument
[all …]
/dports/games/libretro-picodrive/picodrive-600894e/platform/gp2x/code940/
H A D940.c48 err = MP3Decode(shared_data->mp3dec, &readPtr, &bytesLeft, in mp3_decode()
170 shared_data->mp3dec = MP3InitDecoder(); in Main940()
209 if (shared_data->mp3dec) MP3FreeDecoder(shared_data->mp3dec); in Main940()
210 shared_data->mp3dec = MP3InitDecoder(); in Main940()
H A Dmp3test.c212 err = MP3Decode(shared_data->mp3dec, &readPtr, &bytesLeft, in local_decode()
278 shared_data->mp3dec = MP3InitDecoder(); in main()
280 printf("init: dec: %p ptr: %p\n", shared_data->mp3dec, mp3_data); in main()
H A D940shared.h22 void *mp3dec; /* mp3 decoder's handle */ member
/dports/games/kodi-addon-game.libretro.picodrive/game.libretro.picodrive-1.97.0.19-Matrix/depends/common/picodrive/platform/gp2x/code940/
H A D940.c48 err = MP3Decode(shared_data->mp3dec, &readPtr, &bytesLeft, in mp3_decode()
173 shared_data->mp3dec = MP3InitDecoder(); in Main940()
212 if (shared_data->mp3dec) MP3FreeDecoder(shared_data->mp3dec); in Main940()
214 shared_data->mp3dec = MP3InitDecoder(); in Main940()
H A Dmp3test.c212 err = MP3Decode(shared_data->mp3dec, &readPtr, &bytesLeft, in local_decode()
278 shared_data->mp3dec = MP3InitDecoder(); in main()
280 printf("init: dec: %p ptr: %p\n", shared_data->mp3dec, mp3_data); in main()
H A D940shared.h22 void *mp3dec; /* mp3 decoder's handle */ member
/dports/audio/streamtranscoder/streamtranscoder-1.2.8/src/libtranscoder/
H A Dtranscurl.cpp90 mp3dec_init(&(transglobal.mp3dec)); in header_function()
154 mp3dec_feed_stream(&(transglobal.mp3dec), pData, realsize); in sendToMP3Decoder()
155 if (mp3dec_get_stream_size(&(transglobal.mp3dec)) > MIN_MP3_STREAM_SIZE) { in sendToMP3Decoder()
156 if (!mp3dec_decode(&(transglobal.mp3dec))) { in sendToMP3Decoder()
163 if (transglobal.mp3dec.nch == 1) { in sendToMP3Decoder()
166 if (transglobal.mp3dec.nch == 2) { in sendToMP3Decoder()
170 if (transglobal.mp3dec.sampleRate > 0) { in sendToMP3Decoder()
171 sprintf(currentBitrate, "%dHz/%s MP3", transglobal.mp3dec.sampleRate, currentChannels); in sendToMP3Decoder()
354 mp3dec_init(&(transglobal.mp3dec)); in parseShoutcastHeader()
H A Dtranscurl.h23 MP3_DECODE_ST mp3dec;
/dports/games/easyrpg-player/Player-0.7.0/src/
H A Daudio_decoder.cpp137 auto mp3dec = add_resampler(std::make_unique<Mpg123Decoder>()); in Create() local
138 if (mp3dec->WasInited()) { in Create()
140 return mp3dec; in Create()
147 return mp3dec; in Create()
/dports/audio/bharvestr-lv2/BHarvestr-7e6a1e7c81d0af61d4fabcd823978d62c8970502/src/
H A DSample.hpp68 mp3dec_t mp3dec; local
70 …if (mp3dec_load (&mp3dec, path, &mp3info, NULL, NULL)) throw std::invalid_argument ("Can't open " …
/dports/audio/bjumblr-lv2/BJumblr-1.6.8/src/
H A DSample.hpp79 mp3dec_t mp3dec; local
81 …if (mp3dec_load (&mp3dec, path, &mp3info, NULL, NULL)) throw std::invalid_argument ("Can't open " …
/dports/audio/boops-lv2/BOops-1.8.2/src/
H A DSample.hpp79 mp3dec_t mp3dec; local
81 …if (mp3dec_load (&mp3dec, path, &mp3info, NULL, NULL)) throw std::invalid_argument ("Can't open " …
/dports/games/libretro-uae/libretro-uae-8333daa/sources/src/
H A Dblkdev_cdimage.c333 mp3decoder *mp3dec = NULL; in cdda_unpack_func() local
354 if (!mp3dec) { in cdda_unpack_func()
356 mp3dec = new mp3decoder(); in cdda_unpack_func()
359 if (mp3dec) in cdda_unpack_func()
369 delete mp3dec; in cdda_unpack_func() local
1355 mp3decoder *mp3dec = NULL; in parsecue() local
1545 if (!mp3dec) { in parsecue()
1547 mp3dec = new mp3decoder(); in parsecue()
1550 if (mp3dec) { in parsecue()
1552 t->filesize = mp3dec->getsize (t->handle); in parsecue()
[all …]
/dports/emulators/fs-uae/fs-uae-3.1.35/src/
H A Dblkdev_cdimage.cpp385 mp3decoder *mp3dec = NULL; in cdda_unpack_func() local
406 if (!mp3dec) { in cdda_unpack_func()
408 mp3dec = new mp3decoder(); in cdda_unpack_func()
411 if (mp3dec) in cdda_unpack_func()
421 delete mp3dec; in cdda_unpack_func()
1532 mp3decoder *mp3dec = NULL; in parsecue() local
1748 if (!mp3dec) { in parsecue()
1750 mp3dec = new mp3decoder(); in parsecue()
1753 if (mp3dec) { in parsecue()
1755 t->filesize = mp3dec->getsize (t->handle); in parsecue()
[all …]
/dports/games/kodi-addon-game.libretro.picodrive/game.libretro.picodrive-1.97.0.19-Matrix/depends/common/picodrive/platform/common/helix/
H A DMakefile26 OBJS += mp3dec.o mp3tabs.o
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/chromium/patches/
H A DREADME107 libavformat/mp3dec.c
220 libavformat/mp3dec.c
381 Recent changes to mp3dec.c caused the custom flag we added to the
395 libavformat/mp3dec.c
402 Fix dictionary leak in mp3dec
404 Upstream changes in mp3dec.c introduced a leak. s->metadata is
416 libavformat/mp3dec.c
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/chromium/patches/
H A DREADME107 libavformat/mp3dec.c
220 libavformat/mp3dec.c
381 Recent changes to mp3dec.c caused the custom flag we added to the
395 libavformat/mp3dec.c
402 Fix dictionary leak in mp3dec
404 Upstream changes in mp3dec.c introduced a leak. s->metadata is
416 libavformat/mp3dec.c
/dports/audio/csound/csound-6.15.0/
H A Dall_string_files80 ./H/mp3dec.h
118 ./InOut/libmpadec/mp3dec.c
/dports/audio/csound/csound-6.15.0/Android/CsoundAndroid/jni/
H A DAndroid.mk251 $(CSOUND_SRC_ROOT)/InOut/libmpadec/mp3dec.c \
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/minimp3-sys-0.3.2/minimp3/
H A DREADME.md295 * https://sourceforge.net/projects/mp3dec/

12