Subversion Repositories Kolibri OS

Rev

Rev 6144 | Rev 6438 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6144 Rev 6301
Line 150... Line 150...
150
    struct list_head input_list;
150
    struct list_head input_list;
151
    struct list_head output_list;
151
    struct list_head output_list;
152
 
152
 
Line 153... Line 153...
153
    struct decoder *decoder;
153
    struct decoder *decoder;
-
 
154
    int             snd_format;
154
    volatile int    frames_count;
155
    volatile int    frames_count;
155
    int             has_sound:1;
156
    unsigned int    has_sound:1;
156
    int             audio_timer_valid:1;
157
    unsigned int    audio_timer_valid:1;
157
    int             blit_bitmap:1;      /* hardware RGBA blitter    */
158
    unsigned int    blit_bitmap:1;      /* hardware RGBA blitter    */
158
    int             blit_texture:1;     /* hardware RGBA blit and scale */
159
    unsigned int    blit_texture:1;     /* hardware RGBA blit and scale */
159
    int             blit_planar:1;      /* hardbare YUV blit and scale */
160
    unsigned int    blit_planar:1;      /* hardbare YUV blit and scale */
160
};
161
};
Line 161... Line 162...
161
 
162
 
162
 
163
 
Line 175... Line 176...
175
void render_draw_client(render_t *render);
176
void render_draw_client(render_t *render);
176
 
177
 
Line 177... Line 178...
177
int fplay_init_context(vst_t *vst);
178
int fplay_init_context(vst_t *vst);
Line 178... Line 179...
178
 
179
 
179
int init_audio(int format);
180
int init_audio(vst_t* vst);
180
int audio_thread(void *param);
181
int audio_thread(void *param);
Line 181... Line 182...
181
void set_audio_volume(int left, int right);
182
void set_audio_volume(int left, int right);
182
 
183