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
962314fe
Commit
962314fe
authored
Nov 03, 2012
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AVR demuxer
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
8d889205
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
101 additions
and
1 deletion
+101
-1
Changelog
Changelog
+1
-0
general.texi
doc/general.texi
+2
-0
Makefile
libavformat/Makefile
+1
-0
allformats.c
libavformat/allformats.c
+1
-0
avr.c
libavformat/avr.c
+95
-0
version.h
libavformat/version.h
+1
-1
No files found.
Changelog
View file @
962314fe
...
@@ -20,6 +20,7 @@ version <next>:
...
@@ -20,6 +20,7 @@ version <next>:
- ffescape tool
- ffescape tool
- metadata (info chunk) support in CAF muxer
- metadata (info chunk) support in CAF muxer
- field filter ported from libmpcodecs
- field filter ported from libmpcodecs
- AVR demuxer
version 1.0:
version 1.0:
...
...
doc/general.texi
View file @
962314fe
...
@@ -150,6 +150,8 @@ library:
...
@@ -150,6 +150,8 @@ library:
@item ASF @tab X @tab X
@item ASF @tab X @tab X
@item AVI @tab X @tab X
@item AVI @tab X @tab X
@item AVISynth @tab @tab X
@item AVISynth @tab @tab X
@item AVR @tab @tab X
@tab Audio format used on Mac.
@item AVS @tab @tab X
@item AVS @tab @tab X
@tab Multimedia format used by the Creature Shock game.
@tab Multimedia format used by the Creature Shock game.
@item Beam Software SIFF @tab @tab X
@item Beam Software SIFF @tab @tab X
...
...
libavformat/Makefile
View file @
962314fe
...
@@ -56,6 +56,7 @@ OBJS-$(CONFIG_AVI_DEMUXER) += avidec.o
...
@@ -56,6 +56,7 @@ OBJS-$(CONFIG_AVI_DEMUXER) += avidec.o
OBJS-$(CONFIG_AVI_MUXER)
+=
avienc.o
OBJS-$(CONFIG_AVI_MUXER)
+=
avienc.o
OBJS-$(CONFIG_AVISYNTH)
+=
avisynth.o
OBJS-$(CONFIG_AVISYNTH)
+=
avisynth.o
OBJS-$(CONFIG_AVM2_MUXER)
+=
swfenc.o
swf.o
OBJS-$(CONFIG_AVM2_MUXER)
+=
swfenc.o
swf.o
OBJS-$(CONFIG_AVR_DEMUXER)
+=
avr.o
OBJS-$(CONFIG_AVS_DEMUXER)
+=
avs.o
vocdec.o
voc.o
OBJS-$(CONFIG_AVS_DEMUXER)
+=
avs.o
vocdec.o
voc.o
OBJS-$(CONFIG_BETHSOFTVID_DEMUXER)
+=
bethsoftvid.o
OBJS-$(CONFIG_BETHSOFTVID_DEMUXER)
+=
bethsoftvid.o
OBJS-$(CONFIG_BFI_DEMUXER)
+=
bfi.o
OBJS-$(CONFIG_BFI_DEMUXER)
+=
bfi.o
...
...
libavformat/allformats.c
View file @
962314fe
...
@@ -69,6 +69,7 @@ void av_register_all(void)
...
@@ -69,6 +69,7 @@ void av_register_all(void)
REGISTER_MUXDEMUX
(
AVI
,
avi
);
REGISTER_MUXDEMUX
(
AVI
,
avi
);
REGISTER_DEMUXER
(
AVISYNTH
,
avisynth
);
REGISTER_DEMUXER
(
AVISYNTH
,
avisynth
);
REGISTER_MUXER
(
AVM2
,
avm2
);
REGISTER_MUXER
(
AVM2
,
avm2
);
REGISTER_DEMUXER
(
AVR
,
avr
);
REGISTER_DEMUXER
(
AVS
,
avs
);
REGISTER_DEMUXER
(
AVS
,
avs
);
REGISTER_DEMUXER
(
BETHSOFTVID
,
bethsoftvid
);
REGISTER_DEMUXER
(
BETHSOFTVID
,
bethsoftvid
);
REGISTER_DEMUXER
(
BFI
,
bfi
);
REGISTER_DEMUXER
(
BFI
,
bfi
);
...
...
libavformat/avr.c
0 → 100644
View file @
962314fe
/*
* AVR demuxer
* Copyright (c) 2012 Paul B Mahol
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* FFmpeg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "rawdec.h"
static
int
avr_probe
(
AVProbeData
*
p
)
{
if
(
AV_RL32
(
p
->
buf
)
==
MKTAG
(
'2'
,
'B'
,
'I'
,
'T'
))
return
AVPROBE_SCORE_MAX
/
2
;
return
0
;
}
static
int
avr_read_header
(
AVFormatContext
*
s
)
{
uint16_t
chan
,
sign
,
bps
;
AVStream
*
st
;
st
=
avformat_new_stream
(
s
,
NULL
);
if
(
!
st
)
return
AVERROR
(
ENOMEM
);
st
->
codec
->
codec_type
=
AVMEDIA_TYPE_AUDIO
;
avio_skip
(
s
->
pb
,
4
);
// magic
avio_skip
(
s
->
pb
,
8
);
// sample_name
chan
=
avio_rb16
(
s
->
pb
);
if
(
!
chan
)
{
st
->
codec
->
channels
=
1
;
}
else
if
(
chan
==
0xFFFFu
)
{
st
->
codec
->
channels
=
2
;
}
else
{
av_log_ask_for_sample
(
s
,
"unknown number of channels
\n
"
);
return
AVERROR_PATCHWELCOME
;
}
st
->
codec
->
bits_per_coded_sample
=
bps
=
avio_rb16
(
s
->
pb
);
sign
=
avio_rb16
(
s
->
pb
);
avio_skip
(
s
->
pb
,
2
);
// loop
avio_skip
(
s
->
pb
,
2
);
// midi
st
->
codec
->
sample_rate
=
avio_rb32
(
s
->
pb
);
avio_skip
(
s
->
pb
,
4
*
3
);
avio_skip
(
s
->
pb
,
2
*
3
);
avio_skip
(
s
->
pb
,
20
);
avio_skip
(
s
->
pb
,
64
);
if
(
!
sign
&&
bps
==
8
)
{
st
->
codec
->
codec_id
=
AV_CODEC_ID_PCM_U8
;
}
else
if
(
!
sign
&&
bps
==
16
)
{
st
->
codec
->
codec_id
=
AV_CODEC_ID_PCM_U16BE
;
}
else
if
(
sign
==
0xFFFFu
&&
bps
==
8
)
{
st
->
codec
->
codec_id
=
AV_CODEC_ID_PCM_S8
;
}
else
if
(
sign
==
0xFFFFu
&&
bps
==
16
)
{
st
->
codec
->
codec_id
=
AV_CODEC_ID_PCM_S16BE
;
}
else
{
av_log_ask_for_sample
(
s
,
"unknown bits per sample
\n
"
);
return
AVERROR_PATCHWELCOME
;
}
avpriv_set_pts_info
(
st
,
64
,
1
,
st
->
codec
->
sample_rate
);
return
0
;
}
AVInputFormat
ff_avr_demuxer
=
{
.
name
=
"avr"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Audio Visual Resarch (AVR)"
),
.
read_probe
=
avr_probe
,
.
read_header
=
avr_read_header
,
.
read_packet
=
ff_raw_read_partial_packet
,
.
extensions
=
"avr"
,
};
libavformat/version.h
View file @
962314fe
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
#include "libavutil/avutil.h"
#include "libavutil/avutil.h"
#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MINOR 3
5
#define LIBAVFORMAT_VERSION_MINOR 3
6
#define LIBAVFORMAT_VERSION_MICRO 100
#define LIBAVFORMAT_VERSION_MICRO 100
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
#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