File: SamplePlayer.h

package info (click to toggle)
lsp-plugins 1.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 91,856 kB
  • sloc: cpp: 427,831; xml: 57,779; makefile: 9,961; php: 1,005; sh: 18
file content (133 lines) | stat: -rw-r--r-- 5,085 bytes parent folder | download
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
 * Copyright (C) 2022 Linux Studio Plugins Project <https://lsp-plug.in/>
 *           (C) 2022 Vladimir Sadovnikov <sadko4u@gmail.com>
 *
 * This file is part of lsp-plugin-fw
 * Created on: 18 дек. 2022 г.
 *
 * lsp-plugin-fw is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * any later version.
 *
 * lsp-plugin-fw is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with lsp-plugin-fw. If not, see <https://www.gnu.org/licenses/>.
 */

#ifndef LSP_PLUG_IN_PLUG_FW_CORE_SAMPLEPLAYER_H_
#define LSP_PLUG_IN_PLUG_FW_CORE_SAMPLEPLAYER_H_

#include <lsp-plug.in/plug-fw/version.h>

#include <lsp-plug.in/dsp-units/sampling/SamplePlayer.h>
#include <lsp-plug.in/ipc/ITask.h>
#include <lsp-plug.in/plug-fw/plug.h>


namespace lsp
{
    namespace core
    {
        /**
         * Sample player class for playing audio files on demand
         */
        class SamplePlayer
        {
            private:
                SamplePlayer & operator = (const SamplePlayer &);

            protected:
                class LoadTask: public ipc::ITask
                {
                    private:
                        SamplePlayer       *pCore;

                    public:
                        explicit LoadTask(SamplePlayer *core);
                        virtual ~LoadTask();

                    public:
                        virtual status_t        run();
                };

                class GCTask: public ipc::ITask
                {
                    private:
                        SamplePlayer       *pCore;

                    public:
                        explicit GCTask(SamplePlayer *core);
                        virtual ~GCTask();

                    public:
                        virtual status_t        run();
                };

            private:
                const meta::plugin_t   *pMetadata;
                plug::IWrapper         *pWrapper;
                LoadTask                sLoadTask;
                GCTask                  sGCTask;

                dspu::SamplePlayer      vPlayers[2];
                dspu::Playback          vPlaybacks[2];
                plug::IPort            *pOut[2];
                size_t                  nSampleRate;

                dspu::Sample           *pLoaded;                // Loaded sample
                dspu::Sample           *pGCList;                // Garbage collection

                wssize_t                nPlayPosition;          // Playback position
                wssize_t                nFileLength;            // Length of the file

                char                    sFileName[PATH_MAX];    // Actual file name
                char                    sReqFileName[PATH_MAX]; // Requested file name
                wsize_t                 nReqPosition;           // Requested playback position
                bool                    bReqRelease;            // Release request
                size_t                  nUpdateReq;             // Update request counter
                size_t                  nUpdateResp;            // Update response counter

            protected:
                static void destroy_sample(dspu::Sample * &sample);
                static void destroy_samples(dspu::Sample *gc_list);

                static plug::IPort *find_out_port(const char *id, plug::IPort **ports, size_t count);

            protected:
                void        connect_outputs(plug::IPort **ports, size_t count);
                status_t    load_sample();
                status_t    perform_gc();
                void        play_current_sample(wsize_t position);
                void        process_async_requests();
                void        process_gc_tasks();
                void        process_playback(size_t samples);

            public:
                explicit SamplePlayer(const meta::plugin_t *meta);
                ~SamplePlayer();

                void    init(plug::IWrapper *wrapper, plug::IPort **ports, size_t count);
                void    destroy();

            public:
                void    set_sample_rate(size_t sample_rate);
                void    process(size_t samples);
                void    play_sample(const char *file, wsize_t position, bool release);
                void    play_sample(wsize_t position, bool release);

                inline wssize_t position() const        { return nPlayPosition; }
                inline wssize_t sample_length() const   { return nFileLength;   }
                inline char    *requested_file_name()   { return sReqFileName;  }
        };

    } /* namespace core */
} /* namespace lsp */



#endif /* LSP_PLUG_IN_PLUG_FW_CORE_SAMPLEPLAYER_H_ */