summaryrefslogtreecommitdiff
path: root/src/xine-engine/buffer.h
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/xine-engine/buffer.h
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/xine-engine/buffer.h')
-rw-r--r--src/xine-engine/buffer.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h
index d60c51611..7d62be4ee 100644
--- a/src/xine-engine/buffer.h
+++ b/src/xine-engine/buffer.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: buffer.h,v 1.122 2003/10/24 02:59:03 tmmm Exp $
+ * $Id: buffer.h,v 1.123 2003/11/11 18:45:00 f1rmb Exp $
*
*
* contents:
@@ -490,23 +490,23 @@ struct fifo_buffer_s
* allocate num_buffers of buf_size bytes each
*/
-fifo_buffer_t *fifo_buffer_new (int num_buffers, uint32_t buf_size);
+fifo_buffer_t *_x_fifo_buffer_new (int num_buffers, uint32_t buf_size);
/* return BUF_VIDEO_xxx given the fourcc
* fourcc_int must be read in machine endianness
* example: fourcc_int = *(uint32_t *)fourcc_char;
*/
-uint32_t fourcc_to_buf_video( uint32_t fourcc_int );
+uint32_t _x_fourcc_to_buf_video( uint32_t fourcc_int );
/* return codec name given BUF_VIDEO_xxx */
-char * buf_video_name( uint32_t buf_type );
+char * _x_buf_video_name( uint32_t buf_type );
/* return BUF_VIDEO_xxx given the formattag */
-uint32_t formattag_to_buf_audio( uint32_t formattag );
+uint32_t _x_formattag_to_buf_audio( uint32_t formattag );
/* return codec name given BUF_VIDEO_xxx */
-char * buf_audio_name( uint32_t buf_type );
+char * _x_buf_audio_name( uint32_t buf_type );
#ifndef ATTRIBUTE_PACKED
@@ -549,10 +549,10 @@ typedef struct __attribute__((__packed__)) {
#endif
/* convert xine_bmiheader struct from little endian */
-void xine_bmiheader_le2me( xine_bmiheader *bih );
+void _x_bmiheader_le2me( xine_bmiheader *bih );
/* convert xine_waveformatex struct from little endian */
-void xine_waveformatex_le2me( xine_waveformatex *wavex );
+void _x_waveformatex_le2me( xine_waveformatex *wavex );
#ifdef __cplusplus
}