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
acac16b5
Commit
acac16b5
authored
Dec 03, 2012
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
soxdec: use ff_pcm_read_packet()
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
c090b542
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
21 deletions
+1
-21
soxdec.c
libavformat/soxdec.c
+1
-21
No files found.
libavformat/soxdec.c
View file @
acac16b5
...
...
@@ -124,31 +124,11 @@ static int sox_read_header(AVFormatContext *s)
return
0
;
}
#define SOX_SAMPLES 1024
static
int
sox_read_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
{
int
ret
,
size
;
if
(
url_feof
(
s
->
pb
))
return
AVERROR_EOF
;
size
=
SOX_SAMPLES
*
s
->
streams
[
0
]
->
codec
->
block_align
;
ret
=
av_get_packet
(
s
->
pb
,
pkt
,
size
);
if
(
ret
<
0
)
return
AVERROR
(
EIO
);
pkt
->
flags
&=
~
AV_PKT_FLAG_CORRUPT
;
pkt
->
stream_index
=
0
;
return
0
;
}
AVInputFormat
ff_sox_demuxer
=
{
.
name
=
"sox"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"SoX native"
),
.
read_probe
=
sox_probe
,
.
read_header
=
sox_read_header
,
.
read_packet
=
sox
_read_packet
,
.
read_packet
=
ff_pcm
_read_packet
,
.
read_seek
=
ff_pcm_read_seek
,
};
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