Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
12cc3bf2
Commit
12cc3bf2
authored
Oct 15, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat: rename a few more h.265 to HEVC
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
59352a07
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
Makefile
libavformat/Makefile
+1
-1
allformats.c
libavformat/allformats.c
+1
-1
hevcdec.c
libavformat/hevcdec.c
+2
-2
No files found.
libavformat/Makefile
View file @
12cc3bf2
...
@@ -166,7 +166,7 @@ OBJS-$(CONFIG_H263_DEMUXER) += h263dec.o rawdec.o
...
@@ -166,7 +166,7 @@ OBJS-$(CONFIG_H263_DEMUXER) += h263dec.o rawdec.o
OBJS-$(CONFIG_H263_MUXER)
+=
rawenc.o
OBJS-$(CONFIG_H263_MUXER)
+=
rawenc.o
OBJS-$(CONFIG_H264_DEMUXER)
+=
h264dec.o
rawdec.o
OBJS-$(CONFIG_H264_DEMUXER)
+=
h264dec.o
rawdec.o
OBJS-$(CONFIG_H264_MUXER)
+=
rawenc.o
OBJS-$(CONFIG_H264_MUXER)
+=
rawenc.o
OBJS-$(CONFIG_H
265_DEMUXER)
+=
h265
dec.o
rawdec.o
OBJS-$(CONFIG_H
EVC_DEMUXER)
+=
hevc
dec.o
rawdec.o
OBJS-$(CONFIG_HLS_DEMUXER)
+=
hls.o
OBJS-$(CONFIG_HLS_DEMUXER)
+=
hls.o
OBJS-$(CONFIG_HLS_MUXER)
+=
hlsenc.o
OBJS-$(CONFIG_HLS_MUXER)
+=
hlsenc.o
OBJS-$(CONFIG_ICO_DEMUXER)
+=
icodec.o
OBJS-$(CONFIG_ICO_DEMUXER)
+=
icodec.o
...
...
libavformat/allformats.c
View file @
12cc3bf2
...
@@ -135,7 +135,7 @@ void av_register_all(void)
...
@@ -135,7 +135,7 @@ void av_register_all(void)
REGISTER_MUXDEMUX
(
H261
,
h261
);
REGISTER_MUXDEMUX
(
H261
,
h261
);
REGISTER_MUXDEMUX
(
H263
,
h263
);
REGISTER_MUXDEMUX
(
H263
,
h263
);
REGISTER_MUXDEMUX
(
H264
,
h264
);
REGISTER_MUXDEMUX
(
H264
,
h264
);
REGISTER_DEMUXER
(
H
265
,
h265
);
REGISTER_DEMUXER
(
H
EVC
,
hevc
);
REGISTER_MUXDEMUX
(
HLS
,
hls
);
REGISTER_MUXDEMUX
(
HLS
,
hls
);
REGISTER_MUXDEMUX
(
ICO
,
ico
);
REGISTER_MUXDEMUX
(
ICO
,
ico
);
REGISTER_DEMUXER
(
IDCIN
,
idcin
);
REGISTER_DEMUXER
(
IDCIN
,
idcin
);
...
...
libavformat/h
265
dec.c
→
libavformat/h
evc
dec.c
View file @
12cc3bf2
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
#include "avformat.h"
#include "avformat.h"
#include "rawdec.h"
#include "rawdec.h"
static
int
h
265
_probe
(
AVProbeData
*
p
)
static
int
h
evc
_probe
(
AVProbeData
*
p
)
{
{
uint32_t
code
=
-
1
;
uint32_t
code
=
-
1
;
int
vps
=
0
,
sps
=
0
,
pps
=
0
,
idr
=
0
;
int
vps
=
0
,
sps
=
0
,
pps
=
0
,
idr
=
0
;
...
@@ -57,4 +57,4 @@ static int h265_probe(AVProbeData *p)
...
@@ -57,4 +57,4 @@ static int h265_probe(AVProbeData *p)
return
0
;
return
0
;
}
}
FF_DEF_RAWVIDEO_DEMUXER
(
h
265
,
"raw H.265 video"
,
h265
_probe
,
"h265,265,hevc"
,
AV_CODEC_ID_HEVC
)
FF_DEF_RAWVIDEO_DEMUXER
(
h
evc
,
"raw HEVC video"
,
hevc
_probe
,
"h265,265,hevc"
,
AV_CODEC_ID_HEVC
)
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