File: mp3.h

package info (click to toggle)
djplay 0.5.0-3.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,448 kB
  • ctags: 1,390
  • sloc: cpp: 13,382; sh: 7,104; makefile: 814; sed: 16
file content (46 lines) | stat: -rw-r--r-- 942 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef _MP3_STREAM_SOURCE_H_INCLUDED
#define _MP3_STREAM_SOURCE_H_INCLUDED

#include "config.h"
#ifdef HAVE_LIBMAD

#include "jack.h"
#include <mad.h>
#include "mp3map.h"

class Mp3StreamSource : public StreamSource
{
Q_OBJECT

public:
	Mp3StreamSource(QWidget *owner);
	~Mp3StreamSource();

	int attach(QString name);
	int get_buffer(char *, int);
	int play(unsigned long start_frame, unsigned long samples, bool loop=false);
	int stop(void);
	void exit_loop(void);
	StreamSource *get_source(void);
	void setMap(Mp3Map *m);
	void generate_wave(void);
private:
	void read_synth_data(char *buf, int max);
	char pcm_buf[4800];
	void render_frame(int size);
	int fd;
	unsigned long file_pos;
	bool external_map;
	Mp3Map *map;
	struct mad_frame fr;
	struct mad_stream st;
	struct mad_synth sy;
	unsigned char *frame_buffer;
	int frames_buffered;
	int first_frame;
	int pcm_pos;
	int sample_offset;
	bool init;
};
#endif /* HAVE_LIBMAD */
#endif