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
d6a7b808
Commit
d6a7b808
authored
Oct 21, 2013
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Be more precise in libavcodec/libavformat/libavutil separation
parent
cc23f932
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
11 deletions
+11
-11
include/vlc_avcodec.h
include/vlc_avcodec.h
+1
-1
include/vlc_codecs.h
include/vlc_codecs.h
+3
-3
include/vlc_es.h
include/vlc_es.h
+1
-1
modules/demux/nuv.c
modules/demux/nuv.c
+1
-1
modules/packetizer/mpeg4video.c
modules/packetizer/mpeg4video.c
+1
-1
src/misc/fourcc.c
src/misc/fourcc.c
+4
-4
No files found.
include/vlc_avcodec.h
View file @
d6a7b808
/*****************************************************************************
* vlc_avcodec.h: VLC thread support for
FFMPEG/
libavcodec
* vlc_avcodec.h: VLC thread support for libavcodec
*****************************************************************************
* Copyright (C) 2009-2010 Rémi Denis-Courmont
*
...
...
include/vlc_codecs.h
View file @
d6a7b808
...
...
@@ -265,7 +265,7 @@ ATTR_PACKED
#define WAVE_FORMAT_A52 0x2000
/* a52 */
#define WAVE_FORMAT_DTS 0x2001
/* DTS */
#define WAVE_FORMAT_
FFMPEG
_AAC 0x706D
#define WAVE_FORMAT_
AVCODEC
_AAC 0x706D
#define WAVE_FORMAT_DIVIO_AAC 0x4143
/* Divio's AAC */
#define WAVE_FORMAT_GSM_AMR_FIXED 0x7A21
/* Fixed bitrate, no SID */
...
...
@@ -275,7 +275,7 @@ ATTR_PACKED
#define WAVE_FORMAT_DK3 0x0061
#define WAVE_FORMAT_DK4 0x0062
/* At least
FFmpeg
use that ID: from libavformat/riff.c ('Vo' == 0x566f)
/* At least
libavformat
use that ID: from libavformat/riff.c ('Vo' == 0x566f)
* { CODEC_ID_VORBIS, ('V'<<8)+'o' }, //HACK/FIXME, does vorbis in WAV/AVI have an (in)official id?
*/
#define WAVE_FORMAT_VORBIS 0x566f
...
...
@@ -395,7 +395,7 @@ wave_format_tag_to_fourcc[] =
{
WAVE_FORMAT_AAC
,
VLC_CODEC_MP4A
,
"MPEG-4 Audio"
},
{
WAVE_FORMAT_AAC_2
,
VLC_CODEC_MP4A
,
"MPEG-4 Audio"
},
{
WAVE_FORMAT_AAC_LATM
,
VLC_CODEC_MP4A
,
"MPEG-4 Audio"
},
{
WAVE_FORMAT_
FFMPEG
_AAC
,
VLC_CODEC_MP4A
,
"MPEG-4 Audio"
},
{
WAVE_FORMAT_
AVCODEC
_AAC
,
VLC_CODEC_MP4A
,
"MPEG-4 Audio"
},
{
WAVE_FORMAT_AAC_MS
,
VLC_CODEC_MP4A
,
"MPEG-4 Audio"
},
{
WAVE_FORMAT_VORBIS
,
VLC_CODEC_VORBIS
,
"Vorbis Audio"
},
{
WAVE_FORMAT_VORB_1
,
VLC_FOURCC
(
'v'
,
'o'
,
'r'
,
'1'
),
"Vorbis 1 Audio"
},
...
...
include/vlc_es.h
View file @
d6a7b808
...
...
@@ -38,7 +38,7 @@
*/
struct
video_palette_t
{
int
i_entries
;
/**< to keep the compatibility with
ffmpeg
's palette */
int
i_entries
;
/**< to keep the compatibility with
libavcodec
's palette */
uint8_t
palette
[
256
][
4
];
/**< 4-byte RGBA/YUVA palette */
};
...
...
modules/demux/nuv.c
View file @
d6a7b808
...
...
@@ -249,7 +249,7 @@ static int Open( vlc_object_t * p_this )
{
if
(
fh
.
i_compression
==
'F'
||
fh
.
i_compression
==
'R'
)
{
/*
ffmpeg
extra data */
/*
libavcodec
extra data */
p_sys
->
i_extra_f
=
fh
.
i_length
;
p_sys
->
p_extra_f
=
malloc
(
fh
.
i_length
);
if
(
p_sys
->
p_extra_f
==
NULL
||
stream_Read
(
p_demux
->
s
,
...
...
modules/packetizer/mpeg4video.c
View file @
d6a7b808
...
...
@@ -533,7 +533,7 @@ static int ParseVOP( decoder_t *p_dec, block_t *p_vop )
return
VLC_SUCCESS
;
}
/* look at
ffmpeg
av_log2 ;) */
/* look at
libavutil
av_log2 ;) */
static
int
vlc_log2
(
unsigned
int
v
)
{
int
n
=
0
;
...
...
src/misc/fourcc.c
View file @
d6a7b808
...
...
@@ -189,8 +189,8 @@ static const staticentry_t p_list_video[] = {
E
(
"hdx4"
,
"Jomigo HDX4 (MPEG-4 Video)"
),
E
(
"SMP4"
,
"Samsung SMP4 (MPEG-4 Video)"
),
E
(
"smp4"
,
"Samsung SMP4 (MPEG-4 Video)"
),
E
(
"fvfw"
,
"
FFmpeg
MPEG-4"
),
E
(
"FVFW"
,
"
FFmpeg
MPEG-4"
),
E
(
"fvfw"
,
"
libavcodec
MPEG-4"
),
E
(
"FVFW"
,
"
libavcodec
MPEG-4"
),
E
(
"FFDS"
,
"FFDShow MPEG-4"
),
E
(
"VIDM"
,
"vidm 4.01 codec"
),
E
(
"DP02"
,
"DynaPel MPEG-4 codec"
),
...
...
@@ -547,8 +547,8 @@ static const staticentry_t p_list_video[] = {
B
(
VLC_CODEC_ASV2
,
"Asus V2 Video"
),
A
(
"ASV2"
),
/* FF
MPEG Video
1 (lossless codec) */
B
(
VLC_CODEC_FFV1
,
"FF
Mpeg Video
1"
),
/* FF
video codec
1 (lossless codec) */
B
(
VLC_CODEC_FFV1
,
"FF
video codec
1"
),
A
(
"FFV1"
),
/* ATI VCR1 */
...
...
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