Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
fe06bee1
Commit
fe06bee1
authored
Nov 12, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DTS to S/PDIF: Update copyright holders
And comments
parent
8fec5772
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
modules/audio_filter/converter/dtstospdif.c
modules/audio_filter/converter/dtstospdif.c
+8
-2
No files found.
modules/audio_filter/converter/dtstospdif.c
View file @
fe06bee1
/*****************************************************************************
* dtstospdif.c : encapsulates DTS frames into S/PDIF packets
*****************************************************************************
* Copyright (C) 2003
, 2006
the VideoLAN team
* Copyright (C) 2003
-2009
the VideoLAN team
* $Id$
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Gildas Bazin
* Derk-Jan Hartman
* Pierre d'Herbemont
* Rémi Denis-Courmont
* Rafaël Carré
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -41,7 +46,7 @@ struct filter_sys_t
{
mtime_t
start_date
;
/* 3 DTS frames
have to be packed into an S/PDIF frame
.
/* 3 DTS frames
(max 2048) have to be packed into an S/PDIF frame (6144)
.
* We accumulate DTS frames from the decoder until we have enough to
* send. */
size_t
i_frame_size
;
...
...
@@ -86,6 +91,7 @@ static int Create( vlc_object_t *p_this )
p_sys
=
p_filter
->
p_sys
=
malloc
(
sizeof
(
*
p_sys
)
);
if
(
!
p_sys
)
return
VLC_ENOMEM
;
p_sys
->
p_buf
=
NULL
;
p_sys
->
i_frame_size
=
0
;
p_sys
->
i_frames
=
0
;
...
...
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