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
61710f7b
Commit
61710f7b
authored
Nov 29, 2006
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better VQA demuxer
Originally committed as revision 7184 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
7667896a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
38 deletions
+69
-38
westwood.c
libavformat/westwood.c
+69
-38
No files found.
libavformat/westwood.c
View file @
61710f7b
...
@@ -44,6 +44,7 @@
...
@@ -44,6 +44,7 @@
#define VQHD_TAG MKBETAG('V', 'Q', 'H', 'D')
#define VQHD_TAG MKBETAG('V', 'Q', 'H', 'D')
#define FINF_TAG MKBETAG('F', 'I', 'N', 'F')
#define FINF_TAG MKBETAG('F', 'I', 'N', 'F')
#define SND0_TAG MKBETAG('S', 'N', 'D', '0')
#define SND0_TAG MKBETAG('S', 'N', 'D', '0')
#define SND1_TAG MKBETAG('S', 'N', 'D', '1')
#define SND2_TAG MKBETAG('S', 'N', 'D', '2')
#define SND2_TAG MKBETAG('S', 'N', 'D', '2')
#define VQFR_TAG MKBETAG('V', 'Q', 'F', 'R')
#define VQFR_TAG MKBETAG('V', 'Q', 'F', 'R')
...
@@ -54,6 +55,7 @@
...
@@ -54,6 +55,7 @@
#define PINF_TAG MKBETAG('P', 'I', 'N', 'F')
#define PINF_TAG MKBETAG('P', 'I', 'N', 'F')
#define PINH_TAG MKBETAG('P', 'I', 'N', 'H')
#define PINH_TAG MKBETAG('P', 'I', 'N', 'H')
#define PIND_TAG MKBETAG('P', 'I', 'N', 'D')
#define PIND_TAG MKBETAG('P', 'I', 'N', 'D')
#define CMDS_TAG MKBETAG('C', 'M', 'D', 'S')
#define VQA_HEADER_SIZE 0x2A
#define VQA_HEADER_SIZE 0x2A
#define VQA_FRAMERATE 15
#define VQA_FRAMERATE 15
...
@@ -243,17 +245,27 @@ static int wsvqa_read_header(AVFormatContext *s,
...
@@ -243,17 +245,27 @@ static int wsvqa_read_header(AVFormatContext *s,
st
->
codec
->
width
=
LE_16
(
&
header
[
6
]);
st
->
codec
->
width
=
LE_16
(
&
header
[
6
]);
st
->
codec
->
height
=
LE_16
(
&
header
[
8
]);
st
->
codec
->
height
=
LE_16
(
&
header
[
8
]);
/* initialize the audio decoder stream is sample rate is non-zero */
st
->
codec
->
time_base
.
num
=
1
;
if
(
LE_16
(
&
header
[
24
]))
{
st
->
codec
->
time_base
.
den
=
VQA_FRAMERATE
;
/* initialize the audio decoder stream for VQA v1 or nonzero samplerate */
if
(
LE_16
(
&
header
[
24
])
||
(
LE_16
(
&
header
[
0
])
==
1
))
{
st
=
av_new_stream
(
s
,
0
);
st
=
av_new_stream
(
s
,
0
);
if
(
!
st
)
if
(
!
st
)
return
AVERROR_NOMEM
;
return
AVERROR_NOMEM
;
av_set_pts_info
(
st
,
33
,
1
,
90000
);
av_set_pts_info
(
st
,
33
,
1
,
90000
);
st
->
codec
->
codec_type
=
CODEC_TYPE_AUDIO
;
st
->
codec
->
codec_type
=
CODEC_TYPE_AUDIO
;
st
->
codec
->
codec_id
=
CODEC_ID_ADPCM_IMA_WS
;
if
(
LE_16
(
&
header
[
0
])
==
1
)
st
->
codec
->
codec_id
=
CODEC_ID_WESTWOOD_SND1
;
else
st
->
codec
->
codec_id
=
CODEC_ID_ADPCM_IMA_WS
;
st
->
codec
->
codec_tag
=
0
;
/* no tag */
st
->
codec
->
codec_tag
=
0
;
/* no tag */
st
->
codec
->
sample_rate
=
LE_16
(
&
header
[
24
]);
st
->
codec
->
sample_rate
=
LE_16
(
&
header
[
24
]);
if
(
!
st
->
codec
->
sample_rate
)
st
->
codec
->
sample_rate
=
22050
;
st
->
codec
->
channels
=
header
[
26
];
st
->
codec
->
channels
=
header
[
26
];
if
(
!
st
->
codec
->
channels
)
st
->
codec
->
channels
=
1
;
st
->
codec
->
bits_per_sample
=
16
;
st
->
codec
->
bits_per_sample
=
16
;
st
->
codec
->
bit_rate
=
st
->
codec
->
channels
*
st
->
codec
->
sample_rate
*
st
->
codec
->
bit_rate
=
st
->
codec
->
channels
*
st
->
codec
->
sample_rate
*
st
->
codec
->
bits_per_sample
/
4
;
st
->
codec
->
bits_per_sample
/
4
;
...
@@ -284,6 +296,7 @@ static int wsvqa_read_header(AVFormatContext *s,
...
@@ -284,6 +296,7 @@ static int wsvqa_read_header(AVFormatContext *s,
case
PINH_TAG
:
case
PINH_TAG
:
case
PIND_TAG
:
case
PIND_TAG
:
case
FINF_TAG
:
case
FINF_TAG
:
case
CMDS_TAG
:
break
;
break
;
default:
default:
...
@@ -306,48 +319,66 @@ static int wsvqa_read_packet(AVFormatContext *s,
...
@@ -306,48 +319,66 @@ static int wsvqa_read_packet(AVFormatContext *s,
{
{
WsVqaDemuxContext
*
wsvqa
=
(
WsVqaDemuxContext
*
)
s
->
priv_data
;
WsVqaDemuxContext
*
wsvqa
=
(
WsVqaDemuxContext
*
)
s
->
priv_data
;
ByteIOContext
*
pb
=
&
s
->
pb
;
ByteIOContext
*
pb
=
&
s
->
pb
;
int
ret
=
0
;
int
ret
=
-
1
;
unsigned
char
preamble
[
VQA_PREAMBLE_SIZE
];
unsigned
char
preamble
[
VQA_PREAMBLE_SIZE
];
unsigned
int
chunk_type
;
unsigned
int
chunk_type
;
unsigned
int
chunk_size
;
unsigned
int
chunk_size
;
int
skip_byte
;
int
skip_byte
;
if
(
get_buffer
(
pb
,
preamble
,
VQA_PREAMBLE_SIZE
)
!=
VQA_PREAMBLE_SIZE
)
while
(
get_buffer
(
pb
,
preamble
,
VQA_PREAMBLE_SIZE
)
==
VQA_PREAMBLE_SIZE
)
{
return
AVERROR_IO
;
chunk_type
=
BE_32
(
&
preamble
[
0
]);
chunk_size
=
BE_32
(
&
preamble
[
4
]);
chunk_type
=
BE_32
(
&
preamble
[
0
]);
skip_byte
=
chunk_size
&
0x01
;
chunk_size
=
BE_32
(
&
preamble
[
4
]);
skip_byte
=
chunk_size
&
0x01
;
if
((
chunk_type
==
SND1_TAG
)
||
(
chunk_type
==
SND2_TAG
)
||
(
chunk_type
==
VQFR_TAG
))
{
if
((
chunk_type
==
SND2_TAG
)
||
(
chunk_type
==
VQFR_TAG
))
{
if
(
av_new_packet
(
pkt
,
chunk_size
))
return
AVERROR_IO
;
av_get_packet
(
pb
,
pkt
,
chunk_size
);
ret
=
get_buffer
(
pb
,
pkt
->
data
,
chunk_size
);
if
(
ret
!=
chunk_size
)
{
if
(
ret
!=
chunk_size
)
{
ret
=
AVERROR_IO
;
av_free_packet
(
pkt
);
}
return
AVERROR_IO
;
}
if
(
chunk_type
==
SND2_TAG
)
{
pkt
->
stream_index
=
wsvqa
->
audio_stream_index
;
if
(
chunk_type
==
SND2_TAG
)
{
pkt
->
stream_index
=
wsvqa
->
audio_stream_index
;
pkt
->
pts
=
90000
;
pkt
->
pts
*=
wsvqa
->
audio_frame_counter
;
pkt
->
pts
=
90000
;
pkt
->
pts
/=
wsvqa
->
audio_samplerate
;
pkt
->
pts
*=
wsvqa
->
audio_frame_counter
;
pkt
->
pts
/=
wsvqa
->
audio_samplerate
;
/* 2 samples/byte, 1 or 2 samples per frame depending on stereo */
wsvqa
->
audio_frame_counter
+=
(
chunk_size
*
2
)
/
/* 2 samples/byte, 1 or 2 samples per frame depending on stereo */
wsvqa
->
audio_channels
;
wsvqa
->
audio_frame_counter
+=
(
chunk_size
*
2
)
/
wsvqa
->
audio_channels
;
}
else
if
(
chunk_type
==
SND1_TAG
)
{
pkt
->
stream_index
=
wsvqa
->
audio_stream_index
;
pkt
->
pts
=
90000
;
pkt
->
pts
*=
wsvqa
->
audio_frame_counter
;
pkt
->
pts
/=
wsvqa
->
audio_samplerate
;
/* unpacked size is stored in header */
wsvqa
->
audio_frame_counter
+=
LE_16
(
pkt
->
data
)
/
wsvqa
->
audio_channels
;
}
else
{
pkt
->
stream_index
=
wsvqa
->
video_stream_index
;
pkt
->
pts
=
wsvqa
->
video_pts
;
wsvqa
->
video_pts
+=
VQA_VIDEO_PTS_INC
;
}
/* stay on 16-bit alignment */
if
(
skip_byte
)
url_fseek
(
pb
,
1
,
SEEK_CUR
);
return
ret
;
}
else
{
}
else
{
pkt
->
stream_index
=
wsvqa
->
video_stream_index
;
switch
(
chunk_type
){
pkt
->
pts
=
wsvqa
->
video_pts
;
case
CMDS_TAG
:
wsvqa
->
video_pts
+=
VQA_VIDEO_PTS_INC
;
case
SND0_TAG
:
break
;
default:
av_log
(
s
,
AV_LOG_INFO
,
"Skipping unknown chunk 0x%08X
\n
"
,
chunk_type
);
}
url_fseek
(
pb
,
chunk_size
+
skip_byte
,
SEEK_CUR
);
}
}
}
}
else
return
AVERROR_INVALIDDATA
;
/* stay on 16-bit alignment */
if
(
skip_byte
)
url_fseek
(
pb
,
1
,
SEEK_CUR
);
return
ret
;
return
ret
;
}
}
...
...
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