summaryrefslogtreecommitdiff
path: root/src/libflac/demux_flac.c
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-11-11 18:44:50 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2003-11-11 18:44:50 +0000
commit20ff61cb378d2550bedd582a5ce3eae07a84d731 (patch)
tree745f5e8278fca6aa49d06df6e2040e7f73201828 /src/libflac/demux_flac.c
parent4d689a92b9b261e41607b4b94c07a6cbf8fd78b1 (diff)
downloadxine-lib-20ff61cb378d2550bedd582a5ce3eae07a84d731.tar.gz
xine-lib-20ff61cb378d2550bedd582a5ce3eae07a84d731.tar.bz2
rename internal API function (_x_<function>).
CVS patchset: 5721 CVS date: 2003/11/11 18:44:50
Diffstat (limited to 'src/libflac/demux_flac.c')
-rw-r--r--src/libflac/demux_flac.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libflac/demux_flac.c b/src/libflac/demux_flac.c
index 652916fd8..04722c7a8 100644
--- a/src/libflac/demux_flac.c
+++ b/src/libflac/demux_flac.c
@@ -301,7 +301,7 @@ demux_flac_send_chunk (demux_plugin_t *this_gen) {
}
if (this->seek_flag) {
- xine_demux_control_newpts (this->stream, current_pts, 0);
+ _x_demux_control_newpts (this->stream, current_pts, 0);
this->seek_flag = 0;
}
@@ -368,7 +368,7 @@ demux_flac_send_headers (demux_plugin_t *this_gen) {
this->stream->stream_info[XINE_STREAM_INFO_AUDIO_SAMPLERATE] = this->sample_rate;
this->stream->stream_info[XINE_STREAM_INFO_AUDIO_BITS] = this->bits_per_sample;
- xine_demux_control_start (this->stream);
+ _x_demux_control_start (this->stream);
if (this->audio_fifo) {
buf = this->audio_fifo->buffer_pool_alloc (this->audio_fifo);
@@ -446,7 +446,7 @@ demux_flac_seek (demux_plugin_t *this_gen, off_t start_pos, int start_time) {
this->status = DEMUX_FINISHED;
}
- xine_demux_flush_engine (this->stream);
+ _x_demux_flush_engine (this->stream);
return this->status;
}