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
104a4289
Commit
104a4289
authored
Apr 14, 2016
by
Alexandra Hájková
Committed by
Diego Biurrun
Nov 24, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
utvideodec: Convert to the new bitstream reader
parent
85f760fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
utvideodec.c
libavcodec/utvideodec.c
+8
-7
No files found.
libavcodec/utvideodec.c
View file @
104a4289
...
...
@@ -28,10 +28,11 @@
#include <stdlib.h>
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "bitstream.h"
#include "bswapdsp.h"
#include "bytestream.h"
#include "get_bits.h"
#include "thread.h"
#include "utvideo.h"
...
...
@@ -85,7 +86,7 @@ static int decode_plane(UtvideoContext *c, int plane_no,
int
i
,
j
,
slice
,
pix
;
int
sstart
,
send
;
VLC
vlc
;
GetBitContext
gb
;
BitstreamContext
bc
;
int
prev
,
fsym
;
const
int
cmask
=
~
(
!
plane_no
&&
c
->
avctx
->
pix_fmt
==
AV_PIX_FMT_YUV420P
);
...
...
@@ -146,17 +147,17 @@ static int decode_plane(UtvideoContext *c, int plane_no,
c
->
bdsp
.
bswap_buf
((
uint32_t
*
)
c
->
slice_bits
,
(
uint32_t
*
)
c
->
slice_bits
,
(
slice_data_end
-
slice_data_start
+
3
)
>>
2
);
init_get_bits
(
&
gb
,
c
->
slice_bits
,
slice_size
*
8
);
bitstream_init
(
&
bc
,
c
->
slice_bits
,
slice_size
*
8
);
prev
=
0x80
;
for
(
j
=
sstart
;
j
<
send
;
j
++
)
{
for
(
i
=
0
;
i
<
width
*
step
;
i
+=
step
)
{
if
(
get_bits_left
(
&
gb
)
<=
0
)
{
if
(
bitstream_bits_left
(
&
bc
)
<=
0
)
{
av_log
(
c
->
avctx
,
AV_LOG_ERROR
,
"Slice decoding ran out of bits
\n
"
);
goto
fail
;
}
pix
=
get_vlc2
(
&
gb
,
vlc
.
table
,
vlc
.
bits
,
4
);
pix
=
bitstream_read_vlc
(
&
bc
,
vlc
.
table
,
vlc
.
bits
,
4
);
if
(
pix
<
0
)
{
av_log
(
c
->
avctx
,
AV_LOG_ERROR
,
"Decoding error
\n
"
);
goto
fail
;
...
...
@@ -169,9 +170,9 @@ static int decode_plane(UtvideoContext *c, int plane_no,
}
dest
+=
stride
;
}
if
(
get_bits_left
(
&
gb
)
>
32
)
if
(
bitstream_bits_left
(
&
bc
)
>
32
)
av_log
(
c
->
avctx
,
AV_LOG_WARNING
,
"%d bits left after decoding slice
\n
"
,
get_bits_left
(
&
gb
));
"%d bits left after decoding slice
\n
"
,
bitstream_bits_left
(
&
bc
));
}
ff_free_vlc
(
&
vlc
);
...
...
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