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
823cd548
Commit
823cd548
authored
May 17, 2002
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* plugins/mpeg_system/mpeg_audio.c : you can now force this plugin( mpegaudio ).
parent
74886e67
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
10 deletions
+21
-10
plugins/mpeg_system/mpeg_audio.c
plugins/mpeg_system/mpeg_audio.c
+21
-10
No files found.
plugins/mpeg_system/mpeg_audio.c
View file @
823cd548
...
...
@@ -2,7 +2,7 @@
* mpeg_audio.c : mpeg_audio Stream input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: mpeg_audio.c,v 1.
6 2002/05/14 14:13:00
fenrir Exp $
* $Id: mpeg_audio.c,v 1.
7 2002/05/17 23:01:02
fenrir Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -24,11 +24,11 @@
* Preamble
*****************************************************************************/
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include <videolan/vlc.h>
#include <sys/types.h>
#include "stream_control.h"
#include "input_ext-intf.h"
#include "input_ext-dec.h"
...
...
@@ -53,7 +53,7 @@ MODULE_CONFIG_STOP
MODULE_INIT_START
SET_DESCRIPTION
(
"MPEG I/II Audio stream demux"
)
ADD_CAPABILITY
(
DEMUX
,
110
)
ADD_SHORTCUT
(
"mpeg
_
audio"
)
ADD_SHORTCUT
(
"mpegaudio"
)
MODULE_INIT_STOP
MODULE_ACTIVATE_START
...
...
@@ -400,6 +400,7 @@ static int MPEGAudioInit( input_thread_t * p_input )
mpegaudio_format_t
mpeg
;
es_descriptor_t
*
p_es
;
int
i_pos
;
int
b_forced
;
/* XXX: i don't know what it's supposed to do, copied from ESInit */
/* Initialize access plug-in structures. */
...
...
@@ -408,13 +409,28 @@ static int MPEGAudioInit( input_thread_t * p_input )
/* Improve speed. */
p_input
->
i_bufsize
=
INPUT_DEFAULT_BUFSIZE
;
}
if
(
(
*
p_input
->
psz_demux
)
&&
(
!
strncmp
(
p_input
->
psz_demux
,
"mpegaudio"
,
10
)
)
)
{
b_forced
=
1
;
}
else
{
b_forced
=
0
;
}
/* check if it can be a ps stream */
if
(
__CheckPS
(
p_input
)
)
if
(
__CheckPS
(
p_input
)
&&
!
b_forced
)
{
return
(
-
1
);
}
/* must be sure that is mpeg audio stream */
if
(
MPEGAudio_FindFrame
(
p_input
,
&
i_pos
,
&
mpeg
,
MPEGAUDIO_MAXTESTPOS
)
!=
2
)
if
(
MPEGAudio_FindFrame
(
p_input
,
&
i_pos
,
&
mpeg
,
(
b_forced
?
2
*
MPEGAUDIO_MAXFRAMESIZE
:
MPEGAUDIO_MAXTESTPOS
)
)
<
(
b_forced
?
1
:
2
)
)
{
intf_WarnMsg
(
2
,
"input: MPEGAudio plug-in discarded"
);
return
(
-
1
);
...
...
@@ -581,11 +597,6 @@ static int MPEGAudioDemux( input_thread_t * p_input )
p_pes
->
p_last
=
p_data
;
i_toread
-=
i_read
;
}
/* XXX VERY STRANGE need to *90000 and not *1000000 WHYYYY ???
I know that for mpeg system clock unit is based on 90000 but
pts is not supposed to be in microsec for vlc ?
At least it's welcome to write it somewhere in input_clock.c
i've wasted time because of it :( */
p_mpegaudio
->
i_pts
=
(
mtime_t
)
90000
*
(
mtime_t
)
p_mpegaudio
->
i_framecount
*
(
mtime_t
)
MPEGAudio_DecodedFrameSize
(
&
mpeg
)
/
...
...
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