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
88508a87
Commit
88508a87
authored
7 years ago
by
Aurelien Jacobs
Browse files
Options
Downloads
Patches
Plain Diff
sbc: add raw muxer for SBC
parent
ff4600d9
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
doc/general.texi
+1
-1
1 addition, 1 deletion
doc/general.texi
libavformat/Makefile
+1
-0
1 addition, 0 deletions
libavformat/Makefile
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
16 additions
and
1 deletion
doc/general.texi
+
1
−
1
View file @
88508a87
...
@@ -501,7 +501,7 @@ library:
...
@@ -501,7 +501,7 @@ library:
@item raw NULL @tab X @tab
@item raw NULL @tab X @tab
@item raw video @tab X @tab X
@item raw video @tab X @tab X
@item raw id RoQ @tab X @tab
@item raw id RoQ @tab X @tab
@item raw SBC @tab
@tab X
@item raw SBC @tab
X
@tab X
@item raw Shorten @tab @tab X
@item raw Shorten @tab @tab X
@item raw TAK @tab @tab X
@item raw TAK @tab @tab X
@item raw TrueHD @tab X @tab X
@item raw TrueHD @tab X @tab X
...
...
This diff is collapsed.
Click to expand it.
libavformat/Makefile
+
1
−
0
View file @
88508a87
...
@@ -453,6 +453,7 @@ OBJS-$(CONFIG_SAMI_DEMUXER) += samidec.o subtitles.o
...
@@ -453,6 +453,7 @@ OBJS-$(CONFIG_SAMI_DEMUXER) += samidec.o subtitles.o
OBJS-$(CONFIG_SAP_DEMUXER)
+=
sapdec.o
OBJS-$(CONFIG_SAP_DEMUXER)
+=
sapdec.o
OBJS-$(CONFIG_SAP_MUXER)
+=
sapenc.o
OBJS-$(CONFIG_SAP_MUXER)
+=
sapenc.o
OBJS-$(CONFIG_SBC_DEMUXER)
+=
sbcdec.o rawdec.o
OBJS-$(CONFIG_SBC_DEMUXER)
+=
sbcdec.o rawdec.o
OBJS-$(CONFIG_SBC_MUXER)
+=
rawenc.o
OBJS-$(CONFIG_SBG_DEMUXER)
+=
sbgdec.o
OBJS-$(CONFIG_SBG_DEMUXER)
+=
sbgdec.o
OBJS-$(CONFIG_SCC_DEMUXER)
+=
sccdec.o subtitles.o
OBJS-$(CONFIG_SCC_DEMUXER)
+=
sccdec.o subtitles.o
OBJS-$(CONFIG_SCC_MUXER)
+=
sccenc.o subtitles.o
OBJS-$(CONFIG_SCC_MUXER)
+=
sccenc.o subtitles.o
...
...
This diff is collapsed.
Click to expand it.
libavformat/allformats.c
+
1
−
0
View file @
88508a87
...
@@ -355,6 +355,7 @@ extern AVInputFormat ff_sami_demuxer;
...
@@ -355,6 +355,7 @@ extern AVInputFormat ff_sami_demuxer;
extern
AVInputFormat
ff_sap_demuxer
;
extern
AVInputFormat
ff_sap_demuxer
;
extern
AVOutputFormat
ff_sap_muxer
;
extern
AVOutputFormat
ff_sap_muxer
;
extern
AVInputFormat
ff_sbc_demuxer
;
extern
AVInputFormat
ff_sbc_demuxer
;
extern
AVOutputFormat
ff_sbc_muxer
;
extern
AVInputFormat
ff_sbg_demuxer
;
extern
AVInputFormat
ff_sbg_demuxer
;
extern
AVInputFormat
ff_scc_demuxer
;
extern
AVInputFormat
ff_scc_demuxer
;
extern
AVOutputFormat
ff_scc_muxer
;
extern
AVOutputFormat
ff_scc_muxer
;
...
...
This diff is collapsed.
Click to expand it.
libavformat/rawenc.c
+
13
−
0
View file @
88508a87
...
@@ -452,6 +452,19 @@ AVOutputFormat ff_rawvideo_muxer = {
...
@@ -452,6 +452,19 @@ AVOutputFormat ff_rawvideo_muxer = {
};
};
#endif
#endif
#if CONFIG_SBC_MUXER
AVOutputFormat
ff_sbc_muxer
=
{
.
name
=
"sbc"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"raw SBC"
),
.
mime_type
=
"audio/x-sbc"
,
.
extensions
=
"sbc,msbc"
,
.
audio_codec
=
AV_CODEC_ID_SBC
,
.
write_header
=
force_one_stream
,
.
write_packet
=
ff_raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
#endif
#if CONFIG_TRUEHD_MUXER
#if CONFIG_TRUEHD_MUXER
AVOutputFormat
ff_truehd_muxer
=
{
AVOutputFormat
ff_truehd_muxer
=
{
.
name
=
"truehd"
,
.
name
=
"truehd"
,
...
...
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