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
1d5b35cc
Commit
1d5b35cc
authored
Feb 16, 2013
by
James Almer
Committed by
Paul B Mahol
Mar 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc/flacdec: Add frame CRC calculation
Fixes ticket #2266 Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
4ae74c63
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
flacdec.c
libavcodec/flacdec.c
+9
-1
No files found.
libavcodec/flacdec.c
View file @
1d5b35cc
...
...
@@ -533,7 +533,15 @@ static int flac_decode_frame(AVCodecContext *avctx, void *data,
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"decode_frame() failed
\n
"
);
return
-
1
;
}
bytes_read
=
(
get_bits_count
(
&
s
->
gb
)
+
7
)
/
8
;
bytes_read
=
get_bits_count
(
&
s
->
gb
)
/
8
;
if
((
s
->
avctx
->
err_recognition
&
AV_EF_CRCCHECK
)
&&
av_crc
(
av_crc_get_table
(
AV_CRC_16_ANSI
),
0
,
buf
,
bytes_read
))
{
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"CRC error at PTS %"
PRId64
"
\n
"
,
avpkt
->
pts
);
if
(
s
->
avctx
->
err_recognition
&
AV_EF_EXPLODE
)
return
AVERROR_INVALIDDATA
;
}
/* get output buffer */
frame
->
nb_samples
=
s
->
blocksize
;
...
...
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