Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
020fcc94
Commit
020fcc94
authored
Oct 04, 2002
by
Fabrice Bellard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added DV support
Originally committed as revision 999 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
5d2231ee
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
1 deletion
+10
-1
avienc.c
libav/avienc.c
+3
-0
Makefile
libavcodec/Makefile
+1
-1
allcodecs.c
libavcodec/allcodecs.c
+2
-0
avcodec.h
libavcodec/avcodec.h
+4
-0
No files found.
libav/avienc.c
View file @
020fcc94
...
...
@@ -75,6 +75,9 @@ CodecTag codec_bmp_tags[] = {
{
CODEC_ID_MSMPEG4V2
,
MKTAG
(
'M'
,
'P'
,
'4'
,
'2'
)
},
{
CODEC_ID_MSMPEG4V1
,
MKTAG
(
'M'
,
'P'
,
'G'
,
'4'
)
},
{
CODEC_ID_WMV1
,
MKTAG
(
'W'
,
'M'
,
'V'
,
'1'
)
},
{
CODEC_ID_DVVIDEO
,
MKTAG
(
'd'
,
'v'
,
's'
,
'l'
)
},
{
CODEC_ID_DVVIDEO
,
MKTAG
(
'd'
,
'v'
,
's'
,
'd'
)
},
{
CODEC_ID_DVVIDEO
,
MKTAG
(
'd'
,
'v'
,
'h'
,
'd'
)
},
{
0
,
0
},
};
...
...
libavcodec/Makefile
View file @
020fcc94
...
...
@@ -15,7 +15,7 @@ OBJS= common.o utils.o mem.o allcodecs.o \
mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o
\
motion_est.o imgconvert.o imgresample.o msmpeg4.o
\
mpeg12.o h263dec.o svq1.o rv10.o mpegaudiodec.o pcm.o simple_idct.o
\
ratecontrol.o adpcm.o eval.o
ratecontrol.o adpcm.o eval.o
dv.o
ASM_OBJS
=
# currently using liba52 for ac3 decoding
...
...
libavcodec/allcodecs.c
View file @
020fcc94
...
...
@@ -69,6 +69,8 @@ void avcodec_register_all(void)
register_avcodec
(
&
h263i_decoder
);
register_avcodec
(
&
rv10_decoder
);
register_avcodec
(
&
svq1_decoder
);
register_avcodec
(
&
dvvideo_decoder
);
// register_avcodec(&dvaudio_decoder);
register_avcodec
(
&
mjpeg_decoder
);
register_avcodec
(
&
mp2_decoder
);
register_avcodec
(
&
mp3_decoder
);
...
...
libavcodec/avcodec.h
View file @
020fcc94
...
...
@@ -28,6 +28,8 @@ enum CodecID {
CODEC_ID_H263P
,
CODEC_ID_H263I
,
CODEC_ID_SVQ1
,
CODEC_ID_DVVIDEO
,
CODEC_ID_DVAUDIO
,
/* various pcm "codecs" */
CODEC_ID_PCM_S16LE
,
...
...
@@ -812,6 +814,8 @@ extern AVCodec mpeg_decoder;
extern
AVCodec
h263i_decoder
;
extern
AVCodec
rv10_decoder
;
extern
AVCodec
svq1_decoder
;
extern
AVCodec
dvvideo_decoder
;
extern
AVCodec
dvaudio_decoder
;
extern
AVCodec
mjpeg_decoder
;
extern
AVCodec
mp2_decoder
;
extern
AVCodec
mp3_decoder
;
...
...
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