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
ed0bd0a7
Commit
ed0bd0a7
authored
Sep 10, 2018
by
hwren
Committed by
Mark Thompson
Sep 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf: add raw avs2 muxer
Signed-off-by:
hwren
<
hwrenx@126.com
>
parent
85a921f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
allformats.c
libavformat/allformats.c
+1
-0
rawenc.c
libavformat/rawenc.c
+13
-0
No files found.
libavformat/allformats.c
View file @
ed0bd0a7
...
...
@@ -76,6 +76,7 @@ extern AVInputFormat ff_avisynth_demuxer;
extern
AVOutputFormat
ff_avm2_muxer
;
extern
AVInputFormat
ff_avr_demuxer
;
extern
AVInputFormat
ff_avs_demuxer
;
extern
AVOutputFormat
ff_avs2_muxer
;
extern
AVInputFormat
ff_bethsoftvid_demuxer
;
extern
AVInputFormat
ff_bfi_demuxer
;
extern
AVInputFormat
ff_bintext_demuxer
;
...
...
libavformat/rawenc.c
View file @
ed0bd0a7
...
...
@@ -117,6 +117,19 @@ AVOutputFormat ff_aptx_hd_muxer = {
};
#endif
#if CONFIG_AVS2_MUXER
AVOutputFormat
ff_avs2_muxer
=
{
.
name
=
"avs2"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"raw AVS2-P2/IEEE1857.4 video"
),
.
extensions
=
"avs,avs2"
,
.
audio_codec
=
AV_CODEC_ID_NONE
,
.
video_codec
=
AV_CODEC_ID_AVS2
,
.
write_header
=
force_one_stream
,
.
write_packet
=
ff_raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
#endif
#if CONFIG_CAVSVIDEO_MUXER
AVOutputFormat
ff_cavsvideo_muxer
=
{
.
name
=
"cavsvideo"
,
...
...
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