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
35bbc195
Commit
35bbc195
authored
Nov 11, 2015
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat: add IVR demuxer
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
e9aea6d7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
280 additions
and
35 deletions
+280
-35
Changelog
Changelog
+1
-0
general.texi
doc/general.texi
+1
-0
Makefile
libavformat/Makefile
+1
-0
allformats.c
libavformat/allformats.c
+1
-0
rmdec.c
libavformat/rmdec.c
+275
-34
version.h
libavformat/version.h
+1
-1
No files found.
Changelog
View file @
35bbc195
...
...
@@ -33,6 +33,7 @@ version <next>:
- XMA1 & XMA2 decoder
- realtime filter
- anoisesrc audio filter source
- IVR demuxer
version 2.8:
...
...
doc/general.texi
View file @
35bbc195
...
...
@@ -352,6 +352,7 @@ library:
@tab A format generated by IndigoVision 8000 video server.
@item IVF (On2) @tab X @tab X
@tab A format used by libvpx
@item Internet Video Recording @tab @tab X
@item IRCAM @tab X @tab X
@item LATM @tab X @tab X
@item LMLM4 @tab @tab X
...
...
libavformat/Makefile
View file @
35bbc195
...
...
@@ -228,6 +228,7 @@ OBJS-$(CONFIG_ISS_DEMUXER) += iss.o
OBJS-$(CONFIG_IV8_DEMUXER)
+=
iv8.o
OBJS-$(CONFIG_IVF_DEMUXER)
+=
ivfdec.o
OBJS-$(CONFIG_IVF_MUXER)
+=
ivfenc.o
OBJS-$(CONFIG_IVR_DEMUXER)
+=
rmdec.o
rm.o
rmsipr.o
OBJS-$(CONFIG_JACOSUB_DEMUXER)
+=
jacosubdec.o
subtitles.o
OBJS-$(CONFIG_JACOSUB_MUXER)
+=
jacosubenc.o
rawenc.o
OBJS-$(CONFIG_JV_DEMUXER)
+=
jvdec.o
...
...
libavformat/allformats.c
View file @
35bbc195
...
...
@@ -169,6 +169,7 @@ void av_register_all(void)
REGISTER_DEMUXER
(
ISS
,
iss
);
REGISTER_DEMUXER
(
IV8
,
iv8
);
REGISTER_MUXDEMUX
(
IVF
,
ivf
);
REGISTER_DEMUXER
(
IVR
,
ivr
);
REGISTER_MUXDEMUX
(
JACOSUB
,
jacosub
);
REGISTER_DEMUXER
(
JV
,
jv
);
REGISTER_MUXER
(
LATM
,
latm
);
...
...
libavformat/rmdec.c
View file @
35bbc195
This diff is collapsed.
Click to expand it.
libavformat/version.h
View file @
35bbc195
...
...
@@ -30,7 +30,7 @@
#include "libavutil/version.h"
#define LIBAVFORMAT_VERSION_MAJOR 57
#define LIBAVFORMAT_VERSION_MINOR 1
4
#define LIBAVFORMAT_VERSION_MINOR 1
5
#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