Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
4c56d345
Commit
4c56d345
authored
Apr 13, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aout: remove packet helper
parent
070575cc
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
409 deletions
+0
-409
include/vlc_aout.h
include/vlc_aout.h
+0
-30
include/vlc_common.h
include/vlc_common.h
+0
-1
modules/audio_output/packet.c
modules/audio_output/packet.c
+0
-378
No files found.
include/vlc_aout.h
View file @
4c56d345
...
...
@@ -327,34 +327,4 @@ static inline int aout_ChannelsRestart (vlc_object_t *obj, const char *varname,
/* */
VLC_API
vout_thread_t
*
aout_filter_RequestVout
(
filter_t
*
,
vout_thread_t
*
p_vout
,
video_format_t
*
p_fmt
);
/** Audio output buffer FIFO */
struct
aout_fifo_t
{
block_t
*
p_first
;
block_t
**
pp_last
;
date_t
end_date
;
};
/* Legacy packet-oriented audio output helpers */
typedef
struct
{
vlc_mutex_t
lock
;
audio_sample_format_t
format
;
aout_fifo_t
partial
;
/**< Audio blocks before packetization */
aout_fifo_t
fifo
;
/**< Packetized audio blocks */
mtime_t
pause_date
;
/**< Date when paused or VLC_TS_INVALID */
unsigned
samples
;
/**< Samples per packet */
bool
starving
;
/**< Whether currently starving (to limit error messages) */
}
aout_packet_t
;
VLC_DEPRECATED
void
aout_PacketInit
(
audio_output_t
*
,
aout_packet_t
*
,
unsigned
,
const
audio_sample_format_t
*
);
VLC_DEPRECATED
void
aout_PacketDestroy
(
audio_output_t
*
);
VLC_DEPRECATED
int
aout_PacketTimeGet
(
audio_output_t
*
,
mtime_t
*
);
VLC_DEPRECATED
void
aout_PacketPlay
(
audio_output_t
*
,
block_t
*
);
VLC_DEPRECATED
void
aout_PacketFlush
(
audio_output_t
*
,
bool
);
VLC_DEPRECATED
block_t
*
aout_PacketNext
(
audio_output_t
*
,
mtime_t
)
VLC_USED
;
#endif
/* VLC_AOUT_H */
include/vlc_common.h
View file @
4c56d345
...
...
@@ -256,7 +256,6 @@ typedef struct video_palette_t video_palette_t;
/* Audio */
typedef
struct
audio_output
audio_output_t
;
typedef
struct
aout_sys_t
aout_sys_t
;
typedef
struct
aout_fifo_t
aout_fifo_t
;
typedef
audio_format_t
audio_sample_format_t
;
/* Video */
...
...
modules/audio_output/packet.c
deleted
100644 → 0
View file @
070575cc
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment