Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
ed0bd0a7
Commit
ed0bd0a7
authored
6 years ago
by
hwren
Committed by
Mark Thompson
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
lavf: add raw avs2 muxer
Signed-off-by:
hwren
<
hwrenx@126.com
>
parent
85a921f4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavformat/allformats.c
+1
-0
1 addition, 0 deletions
libavformat/allformats.c
libavformat/rawenc.c
+13
-0
13 additions, 0 deletions
libavformat/rawenc.c
with
14 additions
and
0 deletions
libavformat/allformats.c
+
1
−
0
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
;
...
...
This diff is collapsed.
Click to expand it.
libavformat/rawenc.c
+
13
−
0
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"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment