Home
last modified time | relevance | path

Searched refs:ogg_stream (Results 1 – 25 of 123) sorted by relevance

12345

/dports/audio/py-fmoo-audiotools/audiotools-3.0/src/
H A Dogg.c42 ogg_stream->skip(ogg_stream, 5);
60 ogg_stream->call_callbacks(ogg_stream, 0);
61 ogg_stream->call_callbacks(ogg_stream, 0);
62 ogg_stream->call_callbacks(ogg_stream, 0);
133 ogg_stream->write(ogg_stream, 5, 0);
163 ogg_stream->add_callback(ogg_stream,
173 ogg_stream->write(ogg_stream, 5, 0);
182 ogg_stream->write(ogg_stream, 8, 0);
183 ogg_stream->write(ogg_stream, 8, 0);
184 ogg_stream->write(ogg_stream, 8, 0);
[all …]
H A Dogg.h52 read_ogg_page_header(BitstreamReader *ogg_stream,
56 read_ogg_page(BitstreamReader *ogg_stream,
60 write_ogg_page(BitstreamWriter *ogg_stream,
/dports/games/libretro-gw/gw-libretro-2be30ba/retroluxury/src/
H A Drl_sound.c47 static stb_vorbis* ogg_stream; variable
66 ogg_stream = NULL; in rl_sound_init()
73 if ( ogg_stream ) in rl_sound_done()
75 stb_vorbis_close( ogg_stream ); in rl_sound_done()
186 if ( !ogg_stream ) in rl_sound_play_ogg()
224 if ( ogg_stream ) in rl_sound_play_ogg()
236 ogg_stream = NULL; in rl_sound_play_ogg()
242 if ( ogg_stream ) in rl_sound_stop_ogg()
252 ogg_stream = NULL; in rl_sound_stop_ogg()
258 if ( ogg_stream ) in ogg_mix()
[all …]
/dports/devel/godot/godot-3.2.3-stable/modules/stb_vorbis/
H A Daudio_stream_ogg_vorbis.cpp48 int mixed = stb_vorbis_get_samples_float_interleaved(ogg_stream, 2, buffer, todo * 2); in _mix_internal()
119 stb_vorbis_seek(ogg_stream, frames_mixed); in seek()
124 stb_vorbis_close(ogg_stream); in ~AudioStreamPlaybackOGGVorbis()
144 if (!ovs->ogg_stream) { in instance_playback()
148 ERR_FAIL_COND_V(!ovs->ogg_stream, Ref<AudioStreamPlaybackOGGVorbis>()); in instance_playback()
173 stb_vorbis *ogg_stream = NULL; in set_data() local
193 if (!ogg_stream && error == VORBIS_outofmem) { in set_data()
199 ERR_FAIL_COND(ogg_stream == NULL); in set_data()
201 stb_vorbis_info info = stb_vorbis_get_info(ogg_stream); in set_data()
209 length = stb_vorbis_stream_length_in_seconds(ogg_stream); in set_data()
[all …]
H A Dresource_importer_ogg_vorbis.cpp98 Ref<AudioStreamOGGVorbis> ogg_stream; in import() local
99 ogg_stream.instance(); in import()
101 ogg_stream->set_data(data); in import()
102 ERR_FAIL_COND_V(!ogg_stream->get_data().size(), ERR_FILE_CORRUPT); in import()
103 ogg_stream->set_loop(loop); in import()
104 ogg_stream->set_loop_offset(loop_offset); in import()
106 return ResourceSaver::save(p_save_path + ".oggstr", ogg_stream); in import()
/dports/devel/godot-tools/godot-3.2.3-stable/modules/stb_vorbis/
H A Daudio_stream_ogg_vorbis.cpp48 int mixed = stb_vorbis_get_samples_float_interleaved(ogg_stream, 2, buffer, todo * 2); in _mix_internal()
119 stb_vorbis_seek(ogg_stream, frames_mixed); in seek()
124 stb_vorbis_close(ogg_stream); in ~AudioStreamPlaybackOGGVorbis()
144 if (!ovs->ogg_stream) { in instance_playback()
148 ERR_FAIL_COND_V(!ovs->ogg_stream, Ref<AudioStreamPlaybackOGGVorbis>()); in instance_playback()
173 stb_vorbis *ogg_stream = NULL; in set_data() local
193 if (!ogg_stream && error == VORBIS_outofmem) { in set_data()
199 ERR_FAIL_COND(ogg_stream == NULL); in set_data()
201 stb_vorbis_info info = stb_vorbis_get_info(ogg_stream); in set_data()
209 length = stb_vorbis_stream_length_in_seconds(ogg_stream); in set_data()
[all …]
H A Dresource_importer_ogg_vorbis.cpp98 Ref<AudioStreamOGGVorbis> ogg_stream; in import() local
99 ogg_stream.instance(); in import()
101 ogg_stream->set_data(data); in import()
102 ERR_FAIL_COND_V(!ogg_stream->get_data().size(), ERR_FILE_CORRUPT); in import()
103 ogg_stream->set_loop(loop); in import()
104 ogg_stream->set_loop_offset(loop_offset); in import()
106 return ResourceSaver::save(p_save_path + ".oggstr", ogg_stream); in import()
/dports/games/edge/Edge-1.35-source/src/
H A Ds_ogg.cc73 OggVorbis_File ogg_stream; member in oggplayer_c
246 vorbis_inf = ov_info(&ogg_stream, -1); in PostOpenInit()
287 int got_size = ov_read(&ogg_stream, (char *)data_buf, in StreamIntoBuffer()
300 ov_raw_seek(&ogg_stream, 0); in StreamIntoBuffer()
421 int result = ov_open_callbacks((void*)ogg_file, &ogg_stream, NULL, 0, CB); in OpenFile()
448 ov_clear(&ogg_stream); in Close()
576 OggVorbis_File ogg_stream; in S_LoadOGGSound() local
591 vorbis_info *vorbis_inf = ov_info(&ogg_stream, -1); in S_LoadOGGSound()
602 ov_clear(&ogg_stream); in S_LoadOGGSound()
622 int got_size = ov_read(&ogg_stream, (char *)buffer, in S_LoadOGGSound()
[all …]
/dports/audio/py-fmoo-audiotools/audiotools-3.0/src/encoders/
H A Dvorbis.c154 ogg_stream_state ogg_stream; in encode_ogg_vorbis() local
219 ogg_stream_init(&ogg_stream, rand()); in encode_ogg_vorbis()
233 ogg_stream_packetin(&ogg_stream, &header_initial); in encode_ogg_vorbis()
234 ogg_stream_packetin(&ogg_stream, &header_comment); in encode_ogg_vorbis()
235 ogg_stream_packetin(&ogg_stream, &header_codebooks); in encode_ogg_vorbis()
237 for (i = ogg_stream_flush(&ogg_stream, &ogg_page); in encode_ogg_vorbis()
239 i = ogg_stream_flush(&ogg_stream, &ogg_page)) { in encode_ogg_vorbis()
288 ogg_stream_packetin(&ogg_stream, &ogg_packet); in encode_ogg_vorbis()
291 if (ogg_stream_pageout(&ogg_stream, &ogg_page) == 0) { in encode_ogg_vorbis()
306 ogg_stream_clear(&ogg_stream); in encode_ogg_vorbis()
H A Dopus.c147 ogg_stream_state ogg_stream; in encode_opus_file() local
198 ogg_stream_init(&ogg_stream, rand()); in encode_opus_file()
240 ogg_stream_packetin(&ogg_stream, &packet_head); in encode_opus_file()
242 for (i = ogg_stream_flush(&ogg_stream, &ogg_page); in encode_opus_file()
244 i = ogg_stream_flush(&ogg_stream, &ogg_page)) { in encode_opus_file()
266 ogg_stream_packetin(&ogg_stream, &packet_tags); in encode_opus_file()
268 for (i = ogg_stream_flush(&ogg_stream, &ogg_page); in encode_opus_file()
270 i = ogg_stream_flush(&ogg_stream, &ogg_page)) { in encode_opus_file()
356 ogg_stream_packetin(&ogg_stream, &packet); in encode_opus_file()
364 while (ogg_stream_flush(&ogg_stream, &ogg_page)) { in encode_opus_file()
[all …]
/dports/multimedia/lives/lives-3.2.0/lives-plugins/plugins/decoders/
H A Dogg_decoder.c606 stream_priv_t *ogg_stream; in setup_tracks() local
645 ogg_stream = calloc(1, sizeof(*ogg_stream)); in setup_tracks()
656 free(ogg_stream); in setup_tracks()
669 free(ogg_stream); in setup_tracks()
697 free(ogg_stream); in setup_tracks()
735 if (ogg_stream->header_packets_read == ogg_stream->header_packets_needed) break; in setup_tracks()
744 free(ogg_stream); in setup_tracks()
779 free(ogg_stream); in setup_tracks()
807 free(ogg_stream); in setup_tracks()
831 free(ogg_stream); in setup_tracks()
[all …]
/dports/emulators/vice/vice-3.5/src/lib/libffmpeg/libavformat/
H A Doggdec.h61 struct ogg_stream { struct
98 struct ogg_stream streams[1]; argument
102 struct ogg_stream *streams;
154 struct ogg_stream *os = ogg->streams + i; in ogg_gptopts()
H A Doggparsedirac.c30 struct ogg_stream *os = ogg->streams + idx; in dirac_header()
56 struct ogg_stream *os = ogg->streams + idx; in dirac_gptopts()
74 struct ogg_stream *os = ogg->streams + idx; in old_dirac_header()
91 struct ogg_stream *os = ogg->streams + idx; in old_dirac_gptopts()
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/lib/libffmpeg/libavformat/
H A Doggparsedirac.c30 struct ogg_stream *os = ogg->streams + idx; in dirac_header()
56 struct ogg_stream *os = ogg->streams + idx; in dirac_gptopts()
74 struct ogg_stream *os = ogg->streams + idx; in old_dirac_header()
91 struct ogg_stream *os = ogg->streams + idx; in old_dirac_gptopts()
H A Doggdec.h61 struct ogg_stream { struct
98 struct ogg_stream streams[1]; argument
102 struct ogg_stream *streams;
154 struct ogg_stream *os = ogg->streams + i; in ogg_gptopts()
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libavformat/
H A Doggdec.h61 struct ogg_stream { struct
98 struct ogg_stream streams[1]; argument
102 struct ogg_stream *streams;
155 struct ogg_stream *os = ogg->streams + i; in ogg_gptopts()
H A Doggparsedirac.c31 struct ogg_stream *os = ogg->streams + idx; in dirac_header()
71 struct ogg_stream *os = ogg->streams + idx; in dirac_gptopts()
89 struct ogg_stream *os = ogg->streams + idx; in old_dirac_header()
106 struct ogg_stream *os = ogg->streams + idx; in old_dirac_gptopts()
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavformat/
H A Doggdec.h61 struct ogg_stream { struct
99 struct ogg_stream streams[1]; argument
103 struct ogg_stream *streams;
155 struct ogg_stream *os = ogg->streams + i; in ogg_gptopts()
H A Doggparsedirac.c31 struct ogg_stream *os = ogg->streams + idx; in dirac_header()
71 struct ogg_stream *os = ogg->streams + idx; in dirac_gptopts()
89 struct ogg_stream *os = ogg->streams + idx; in old_dirac_header()
106 struct ogg_stream *os = ogg->streams + idx; in old_dirac_gptopts()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavformat/
H A Doggdec.h61 struct ogg_stream { struct
98 struct ogg_stream streams[1]; argument
102 struct ogg_stream *streams;
155 struct ogg_stream *os = ogg->streams + i; in ogg_gptopts()
H A Doggparsedirac.c31 struct ogg_stream *os = ogg->streams + idx; in dirac_header()
71 struct ogg_stream *os = ogg->streams + idx; in dirac_gptopts()
89 struct ogg_stream *os = ogg->streams + idx; in old_dirac_header()
106 struct ogg_stream *os = ogg->streams + idx; in old_dirac_gptopts()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavformat/
H A Doggdec.h61 struct ogg_stream { struct
99 struct ogg_stream streams[1]; argument
103 struct ogg_stream *streams;
155 struct ogg_stream *os = ogg->streams + i; in ogg_gptopts()
H A Doggparsedirac.c31 struct ogg_stream *os = ogg->streams + idx; in dirac_header()
71 struct ogg_stream *os = ogg->streams + idx; in dirac_gptopts()
89 struct ogg_stream *os = ogg->streams + idx; in old_dirac_header()
106 struct ogg_stream *os = ogg->streams + idx; in old_dirac_gptopts()
/dports/multimedia/handbrake/ffmpeg-4.4/libavformat/
H A Doggdec.h61 struct ogg_stream { struct
99 struct ogg_stream streams[1]; argument
103 struct ogg_stream *streams;
155 struct ogg_stream *os = ogg->streams + i; in ogg_gptopts()
H A Doggparsedirac.c31 struct ogg_stream *os = ogg->streams + idx; in dirac_header()
71 struct ogg_stream *os = ogg->streams + idx; in dirac_gptopts()
89 struct ogg_stream *os = ogg->streams + idx; in old_dirac_header()
106 struct ogg_stream *os = ogg->streams + idx; in old_dirac_gptopts()

12345