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
ef5d32b9
Commit
ef5d32b9
authored
Oct 02, 2013
by
Derek Buitenhuis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add raw HEVC muxer
Signed-off-by:
Derek Buitenhuis
<
derek.buitenhuis@gmail.com
>
parent
4040b56f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
2 deletions
+15
-2
Makefile
libavformat/Makefile
+1
-0
allformats.c
libavformat/allformats.c
+1
-1
rawenc.c
libavformat/rawenc.c
+12
-0
version.h
libavformat/version.h
+1
-1
No files found.
libavformat/Makefile
View file @
ef5d32b9
...
...
@@ -166,6 +166,7 @@ OBJS-$(CONFIG_H264_DEMUXER) += h264dec.o rawdec.o
OBJS-$(CONFIG_H264_MUXER)
+=
rawenc.o
OBJS-$(CONFIG_HDS_MUXER)
+=
hdsenc.o
OBJS-$(CONFIG_HEVC_DEMUXER)
+=
hevcdec.o
rawdec.o
OBJS-$(CONFIG_HEVC_MUXER)
+=
rawenc.o
OBJS-$(CONFIG_HLS_DEMUXER)
+=
hls.o
OBJS-$(CONFIG_HLS_MUXER)
+=
hlsenc.o
OBJS-$(CONFIG_HNM_DEMUXER)
+=
hnm.o
...
...
libavformat/allformats.c
View file @
ef5d32b9
...
...
@@ -135,7 +135,7 @@ void av_register_all(void)
REGISTER_MUXDEMUX
(
H263
,
h263
);
REGISTER_MUXDEMUX
(
H264
,
h264
);
REGISTER_MUXER
(
HDS
,
hds
);
REGISTER_
DEMUXER
(
HEVC
,
hevc
);
REGISTER_
MUXDEMUX
(
HEVC
,
hevc
);
REGISTER_MUXDEMUX
(
HLS
,
hls
);
REGISTER_DEMUXER
(
HNM
,
hnm
);
REGISTER_MUXDEMUX
(
ICO
,
ico
);
...
...
libavformat/rawenc.c
View file @
ef5d32b9
...
...
@@ -214,6 +214,18 @@ AVOutputFormat ff_h264_muxer = {
};
#endif
#if CONFIG_HEVC_MUXER
AVOutputFormat
ff_hevc_muxer
=
{
.
name
=
"hevc"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"raw HEVC video"
),
.
extensions
=
"hevc"
,
.
audio_codec
=
AV_CODEC_ID_NONE
,
.
video_codec
=
AV_CODEC_ID_HEVC
,
.
write_packet
=
ff_raw_write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
};
#endif
#if CONFIG_M4V_MUXER
AVOutputFormat
ff_m4v_muxer
=
{
.
name
=
"m4v"
,
...
...
libavformat/version.h
View file @
ef5d32b9
...
...
@@ -30,7 +30,7 @@
#include "libavutil/version.h"
#define LIBAVFORMAT_VERSION_MAJOR 55
#define LIBAVFORMAT_VERSION_MINOR 3
0
#define LIBAVFORMAT_VERSION_MINOR 3
1
#define LIBAVFORMAT_VERSION_MICRO 100
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
...
...
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