Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
128b5eb2
Commit
128b5eb2
authored
May 15, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./plugins/dvd/dvd_summary.c: added a sanity check.
parent
7e1feebd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
plugins/dvd/dvd_summary.c
plugins/dvd/dvd_summary.c
+7
-7
No files found.
plugins/dvd/dvd_summary.c
View file @
128b5eb2
...
...
@@ -3,7 +3,7 @@
* found in .ifo.
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: dvd_summary.c,v 1.1
8 2002/05/14 19:33:54 bozo
Exp $
* $Id: dvd_summary.c,v 1.1
9 2002/05/15 23:53:45 sam
Exp $
*
* Author: Stphane Borel <stef@via.ecp.fr>
*
...
...
@@ -125,12 +125,12 @@ void IfoPrintAudio( thread_dvd_data_t * p_dvd, int i )
{
if
(
audio_status
.
i_available
)
{
char
*
ppsz_mode
[
7
]
=
{
"ac3"
,
"unknown"
,
"mpeg-1"
,
"mpeg-2"
,
"lpcm"
,
"sdds"
,
"dts
"
};
char
*
ppsz_appl_mode
[
3
]
=
{
"no application specified"
,
"karaoke"
,
"surround sound
"
};
char
*
ppsz_mode
[
8
]
=
{
"AC3"
,
"unknown"
,
"MPEG"
,
"MPEG-2"
,
"LPCM"
,
"SDDS"
,
"DTS"
,
"
"
};
char
*
ppsz_appl_mode
[
4
]
=
{
"no application specified"
,
"karaoke"
,
"surround sound"
,
"
"
};
char
*
ppsz_quant
[
4
]
=
{
"16 bits"
,
"20 bits"
,
"24 bits"
,
"drc"
};
{
"16 bits"
,
"20 bits"
,
"24 bits"
,
"drc"
};
intf_WarnMsg
(
5
,
"dvd info: audio %d (%s) is %s, "
"%d%s channel%s, %dHz, %s"
,
i
,
...
...
@@ -140,7 +140,7 @@ void IfoPrintAudio( thread_dvd_data_t * p_dvd, int i )
audio
.
i_multichannel_extension
?
" ext."
:
""
,
audio
.
i_num_channels
?
"s"
:
""
,
audio
.
i_sample_freq
?
96000
:
48000
,
ppsz_appl_mode
[
audio
.
i_appl_mode
&
0x
2
]
);
ppsz_appl_mode
[
audio
.
i_appl_mode
&
0x
3
]
);
intf_WarnMsg
(
5
,
"dvd info: %s, quantization %s, status %x"
,
(
audio
.
i_caption
==
1
)
?
"normal caption"
...
...
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