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
e6868a6a
Commit
e6868a6a
authored
Mar 11, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ffmpeg.h: added missing fourcc.
* araw.c: fixed a warning.
parent
80186f06
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
modules/codec/araw.c
modules/codec/araw.c
+2
-2
modules/codec/ffmpeg/ffmpeg.h
modules/codec/ffmpeg/ffmpeg.h
+4
-1
No files found.
modules/codec/araw.c
View file @
e6868a6a
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* araw.c: Pseudo audio decoder; for raw pcm data
* araw.c: Pseudo audio decoder; for raw pcm data
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* Copyright (C) 2001, 2002 VideoLAN
* $Id: araw.c,v 1.1
2 2003/03/11 06:14:1
6 fenrir Exp $
* $Id: araw.c,v 1.1
3 2003/03/11 06:58:0
6 fenrir Exp $
*
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
...
@@ -501,7 +501,7 @@ static void DecodeThread( adec_thread_t *p_adec )
...
@@ -501,7 +501,7 @@ static void DecodeThread( adec_thread_t *p_adec )
{
{
int16_t
*
s
=
(
int16_t
*
)
p_aout_buffer
->
p_buffer
;
int16_t
*
s
=
(
int16_t
*
)
p_aout_buffer
->
p_buffer
;
int
i
;
unsigned
int
i
;
for
(
i
=
0
;
i
<
p_aout_buffer
->
i_nb_bytes
;
i
++
)
for
(
i
=
0
;
i
<
p_aout_buffer
->
i_nb_bytes
;
i
++
)
{
{
...
...
modules/codec/ffmpeg/ffmpeg.h
View file @
e6868a6a
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* ffmpeg_vdec.h: video decoder using ffmpeg library
* ffmpeg_vdec.h: video decoder using ffmpeg library
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: ffmpeg.h,v 1.1
2 2003/02/18 19:42:57 gbazin
Exp $
* $Id: ffmpeg.h,v 1.1
3 2003/03/11 06:58:06 fenrir
Exp $
*
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
...
@@ -154,3 +154,6 @@ int E_( GetPESData )( u8 *p_buf, int i_max, pes_packet_t *p_pes );
...
@@ -154,3 +154,6 @@ int E_( GetPESData )( u8 *p_buf, int i_max, pes_packet_t *p_pes );
#define FOURCC_wma2 VLC_FOURCC('w','m','a','2')
#define FOURCC_wma2 VLC_FOURCC('w','m','a','2')
#define FOURCC_dvau VLC_FOURCC('d','v','a','u')
#define FOURCC_dvau VLC_FOURCC('d','v','a','u')
#define FOURCC_MAC3 VLC_FOURCC('M','A','C','3')
#define FOURCC_MAC6 VLC_FOURCC('M','A','C','6')
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