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
7bb5c2a6
Commit
7bb5c2a6
authored
Feb 09, 2007
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Raw VC-1 demuxer
Originally committed as revision 7896 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
928e0094
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
allformats.c
libavformat/allformats.c
+1
-0
allformats.h
libavformat/allformats.h
+1
-0
raw.c
libavformat/raw.c
+12
-0
No files found.
libavformat/allformats.c
View file @
7bb5c2a6
...
...
@@ -144,6 +144,7 @@ void av_register_all(void)
REGISTER_DEMUXER
(
TIERTEXSEQ
,
tiertexseq
);
REGISTER_DEMUXER
(
TTA
,
tta
);
REGISTER_DEMUXER
(
V4L2
,
v4l2
);
REGISTER_DEMUXER
(
VC1
,
vc1
);
REGISTER_DEMUXER
(
VIDEO_GRAB_DEVICE
,
video_grab_device
);
REGISTER_DEMUXER
(
VMD
,
vmd
);
REGISTER_MUXDEMUX
(
VOC
,
voc
);
...
...
libavformat/allformats.h
View file @
7bb5c2a6
...
...
@@ -154,6 +154,7 @@ extern AVInputFormat swf_demuxer;
extern
AVOutputFormat
swf_muxer
;
extern
AVInputFormat
tta_demuxer
;
extern
AVInputFormat
v4l2_demuxer
;
extern
AVInputFormat
vc1_demuxer
;
extern
AVInputFormat
voc_demuxer
;
extern
AVOutputFormat
voc_muxer
;
extern
AVInputFormat
wav_demuxer
;
...
...
libavformat/raw.c
View file @
7bb5c2a6
...
...
@@ -716,6 +716,18 @@ AVOutputFormat mjpeg_muxer = {
};
#endif //CONFIG_MUXERS
AVInputFormat
vc1_demuxer
=
{
"vc1"
,
"raw vc1"
,
0
,
NULL
/* vc1_probe */
,
video_read_header
,
raw_read_partial_packet
,
raw_read_close
,
.
extensions
=
"vc1"
,
.
value
=
CODEC_ID_VC1
,
};
/* pcm formats */
#define PCMINPUTDEF(name, long_name, ext, codec) \
...
...
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