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
4fb1221e
Commit
4fb1221e
authored
Nov 03, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: reduce whitespace differences to libav
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
23c03ac9
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
34 additions
and
33 deletions
+34
-33
h264.c
libavcodec/h264.c
+8
-7
h264_cabac.c
libavcodec/h264_cabac.c
+5
-6
h264_cavlc.c
libavcodec/h264_cavlc.c
+12
-12
h264_mb_template.c
libavcodec/h264_mb_template.c
+2
-2
h264_mvpred.h
libavcodec/h264_mvpred.h
+1
-1
h264dsp.c
libavcodec/h264dsp.c
+1
-0
vda_h264.c
libavcodec/vda_h264.c
+5
-5
No files found.
libavcodec/h264.c
View file @
4fb1221e
...
@@ -2983,8 +2983,7 @@ static int field_end(H264Context *h, int in_setup)
...
@@ -2983,8 +2983,7 @@ static int field_end(H264Context *h, int in_setup)
* past end by one (callers fault) and resync_mb_y != 0
* past end by one (callers fault) and resync_mb_y != 0
* causes problems for the first MB line, too.
* causes problems for the first MB line, too.
*/
*/
if
(
CONFIG_ERROR_RESILIENCE
&&
if
(
CONFIG_ERROR_RESILIENCE
&&
!
FIELD_PICTURE
(
h
)
&&
h
->
current_slice
&&
!
h
->
sps
.
new
)
{
!
FIELD_PICTURE
(
h
)
&&
h
->
current_slice
&&
!
h
->
sps
.
new
)
{
h
->
er
.
cur_pic
=
h
->
cur_pic_ptr
;
h
->
er
.
cur_pic
=
h
->
cur_pic_ptr
;
ff_er_frame_end
(
&
h
->
er
);
ff_er_frame_end
(
&
h
->
er
);
}
}
...
@@ -4758,7 +4757,9 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size,
...
@@ -4758,7 +4757,9 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size,
decode_rbsp_trailing
(
h
,
ptr
+
dst_length
-
1
));
decode_rbsp_trailing
(
h
,
ptr
+
dst_length
-
1
));
if
(
h
->
avctx
->
debug
&
FF_DEBUG_STARTCODE
)
if
(
h
->
avctx
->
debug
&
FF_DEBUG_STARTCODE
)
av_log
(
h
->
avctx
,
AV_LOG_DEBUG
,
"NAL %d/%d at %d/%d length %d pass %d
\n
"
,
hx
->
nal_unit_type
,
hx
->
nal_ref_idc
,
buf_index
,
buf_size
,
dst_length
,
pass
);
av_log
(
h
->
avctx
,
AV_LOG_DEBUG
,
"NAL %d/%d at %d/%d length %d pass %d
\n
"
,
hx
->
nal_unit_type
,
hx
->
nal_ref_idc
,
buf_index
,
buf_size
,
dst_length
,
pass
);
if
(
h
->
is_avc
&&
(
nalsize
!=
consumed
)
&&
nalsize
)
if
(
h
->
is_avc
&&
(
nalsize
!=
consumed
)
&&
nalsize
)
av_log
(
h
->
avctx
,
AV_LOG_DEBUG
,
av_log
(
h
->
avctx
,
AV_LOG_DEBUG
,
...
...
libavcodec/h264_cabac.c
View file @
4fb1221e
...
@@ -1684,7 +1684,6 @@ decode_cabac_residual_internal(H264Context *h, int16_t *block,
...
@@ -1684,7 +1684,6 @@ decode_cabac_residual_internal(H264Context *h, int16_t *block,
}
}
}
}
#define STORE_BLOCK(type) \
#define STORE_BLOCK(type) \
do { \
do { \
uint8_t *ctx = coeff_abs_level1_ctx[node_ctx] + abs_level_m1_ctx_base; \
uint8_t *ctx = coeff_abs_level1_ctx[node_ctx] + abs_level_m1_ctx_base; \
...
...
libavcodec/h264_cavlc.c
View file @
4fb1221e
...
@@ -866,7 +866,7 @@ decode_intra_mb:
...
@@ -866,7 +866,7 @@ decode_intra_mb:
}
}
for
(
list
=
0
;
list
<
h
->
list_count
;
list
++
){
for
(
list
=
0
;
list
<
h
->
list_count
;
list
++
){
int
ref_count
=
IS_REF0
(
mb_type
)
?
1
:
local_ref_count
[
list
];
int
ref_count
=
IS_REF0
(
mb_type
)
?
1
:
local_ref_count
[
list
];
for
(
i
=
0
;
i
<
4
;
i
++
){
for
(
i
=
0
;
i
<
4
;
i
++
){
if
(
IS_DIRECT
(
h
->
sub_mb_type
[
i
]))
continue
;
if
(
IS_DIRECT
(
h
->
sub_mb_type
[
i
]))
continue
;
if
(
IS_DIR
(
h
->
sub_mb_type
[
i
],
0
,
list
)){
if
(
IS_DIR
(
h
->
sub_mb_type
[
i
],
0
,
list
)){
...
@@ -948,11 +948,11 @@ decode_intra_mb:
...
@@ -948,11 +948,11 @@ decode_intra_mb:
if
(
IS_DIR
(
mb_type
,
0
,
list
)){
if
(
IS_DIR
(
mb_type
,
0
,
list
)){
if
(
local_ref_count
[
list
]
==
1
){
if
(
local_ref_count
[
list
]
==
1
){
val
=
0
;
val
=
0
;
}
else
if
(
local_ref_count
[
list
]
==
2
){
}
else
if
(
local_ref_count
[
list
]
==
2
){
val
=
get_bits1
(
&
h
->
gb
)
^
1
;
val
=
get_bits1
(
&
h
->
gb
)
^
1
;
}
else
{
}
else
{
val
=
get_ue_golomb_31
(
&
h
->
gb
);
val
=
get_ue_golomb_31
(
&
h
->
gb
);
if
(
val
>=
local_ref_count
[
list
]){
if
(
val
>=
local_ref_count
[
list
]){
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"ref %u overflow
\n
"
,
val
);
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"ref %u overflow
\n
"
,
val
);
return
-
1
;
return
-
1
;
}
}
...
@@ -976,13 +976,13 @@ decode_intra_mb:
...
@@ -976,13 +976,13 @@ decode_intra_mb:
for
(
i
=
0
;
i
<
2
;
i
++
){
for
(
i
=
0
;
i
<
2
;
i
++
){
unsigned
int
val
;
unsigned
int
val
;
if
(
IS_DIR
(
mb_type
,
i
,
list
)){
if
(
IS_DIR
(
mb_type
,
i
,
list
)){
if
(
local_ref_count
[
list
]
==
1
){
if
(
local_ref_count
[
list
]
==
1
)
{
val
=
0
;
val
=
0
;
}
else
if
(
local_ref_count
[
list
]
==
2
)
{
}
else
if
(
local_ref_count
[
list
]
==
2
)
{
val
=
get_bits1
(
&
h
->
gb
)
^
1
;
val
=
get_bits1
(
&
h
->
gb
)
^
1
;
}
else
{
}
else
{
val
=
get_ue_golomb_31
(
&
h
->
gb
);
val
=
get_ue_golomb_31
(
&
h
->
gb
);
if
(
val
>=
local_ref_count
[
list
]){
if
(
val
>=
local_ref_count
[
list
]){
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"ref %u overflow
\n
"
,
val
);
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"ref %u overflow
\n
"
,
val
);
return
-
1
;
return
-
1
;
}
}
...
@@ -1015,11 +1015,11 @@ decode_intra_mb:
...
@@ -1015,11 +1015,11 @@ decode_intra_mb:
if
(
IS_DIR
(
mb_type
,
i
,
list
)){
//FIXME optimize
if
(
IS_DIR
(
mb_type
,
i
,
list
)){
//FIXME optimize
if
(
local_ref_count
[
list
]
==
1
){
if
(
local_ref_count
[
list
]
==
1
){
val
=
0
;
val
=
0
;
}
else
if
(
local_ref_count
[
list
]
==
2
){
}
else
if
(
local_ref_count
[
list
]
==
2
){
val
=
get_bits1
(
&
h
->
gb
)
^
1
;
val
=
get_bits1
(
&
h
->
gb
)
^
1
;
}
else
{
}
else
{
val
=
get_ue_golomb_31
(
&
h
->
gb
);
val
=
get_ue_golomb_31
(
&
h
->
gb
);
if
(
val
>=
local_ref_count
[
list
]){
if
(
val
>=
local_ref_count
[
list
]){
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"ref %u overflow
\n
"
,
val
);
av_log
(
h
->
avctx
,
AV_LOG_ERROR
,
"ref %u overflow
\n
"
,
val
);
return
-
1
;
return
-
1
;
}
}
...
@@ -1142,12 +1142,12 @@ decode_intra_mb:
...
@@ -1142,12 +1142,12 @@ decode_intra_mb:
for
(
chroma_idx
=
0
;
chroma_idx
<
2
;
chroma_idx
++
){
for
(
chroma_idx
=
0
;
chroma_idx
<
2
;
chroma_idx
++
){
const
uint32_t
*
qmul
=
h
->
dequant4_coeff
[
chroma_idx
+
1
+
(
IS_INTRA
(
mb_type
)
?
0
:
3
)][
h
->
chroma_qp
[
chroma_idx
]];
const
uint32_t
*
qmul
=
h
->
dequant4_coeff
[
chroma_idx
+
1
+
(
IS_INTRA
(
mb_type
)
?
0
:
3
)][
h
->
chroma_qp
[
chroma_idx
]];
int16_t
*
mb
=
h
->
mb
+
(
16
*
(
16
+
16
*
chroma_idx
)
<<
pixel_shift
);
int16_t
*
mb
=
h
->
mb
+
(
16
*
(
16
+
16
*
chroma_idx
)
<<
pixel_shift
);
for
(
i8x8
=
0
;
i8x8
<
num_c8x8
;
i8x8
++
)
{
for
(
i8x8
=
0
;
i8x8
<
num_c8x8
;
i8x8
++
)
{
for
(
i4x4
=
0
;
i4x4
<
4
;
i4x4
++
)
{
for
(
i4x4
=
0
;
i4x4
<
4
;
i4x4
++
)
{
const
int
index
=
16
+
16
*
chroma_idx
+
8
*
i8x8
+
i4x4
;
const
int
index
=
16
+
16
*
chroma_idx
+
8
*
i8x8
+
i4x4
;
if
(
decode_residual
(
h
,
gb
,
mb
,
index
,
scan
+
1
,
qmul
,
15
)
<
0
)
if
(
decode_residual
(
h
,
gb
,
mb
,
index
,
scan
+
1
,
qmul
,
15
)
<
0
)
return
-
1
;
return
-
1
;
mb
+=
16
<<
pixel_shift
;
mb
+=
16
<<
pixel_shift
;
}
}
}
}
}
}
...
...
libavcodec/h264_mb_template.c
View file @
4fb1221e
...
@@ -138,8 +138,8 @@ static av_noinline void FUNC(hl_decode_mb)(H264Context *h)
...
@@ -138,8 +138,8 @@ static av_noinline void FUNC(hl_decode_mb)(H264Context *h)
if
(
SIMPLE
||
!
CONFIG_GRAY
||
!
(
h
->
flags
&
CODEC_FLAG_GRAY
))
{
if
(
SIMPLE
||
!
CONFIG_GRAY
||
!
(
h
->
flags
&
CODEC_FLAG_GRAY
))
{
if
(
!
h
->
sps
.
chroma_format_idc
)
{
if
(
!
h
->
sps
.
chroma_format_idc
)
{
for
(
i
=
0
;
i
<
8
;
i
++
)
{
for
(
i
=
0
;
i
<
8
;
i
++
)
{
memset
(
dest_cb
+
i
*
uvlinesize
,
1
<<
(
bit_depth
-
1
),
8
);
memset
(
dest_cb
+
i
*
uvlinesize
,
1
<<
(
bit_depth
-
1
),
8
);
memset
(
dest_cr
+
i
*
uvlinesize
,
1
<<
(
bit_depth
-
1
),
8
);
memset
(
dest_cr
+
i
*
uvlinesize
,
1
<<
(
bit_depth
-
1
),
8
);
}
}
}
else
{
}
else
{
const
uint8_t
*
src_cb
=
h
->
intra_pcm_ptr
+
256
;
const
uint8_t
*
src_cb
=
h
->
intra_pcm_ptr
+
256
;
...
...
libavcodec/h264_mvpred.h
View file @
4fb1221e
...
@@ -663,7 +663,7 @@ static void fill_decode_caches(H264Context *h, int mb_type)
...
@@ -663,7 +663,7 @@ static void fill_decode_caches(H264Context *h, int mb_type)
ref_cache
[
4
-
1
*
8
]
=
topright_type
?
LIST_NOT_USED
ref_cache
[
4
-
1
*
8
]
=
topright_type
?
LIST_NOT_USED
:
PART_NOT_AVAILABLE
;
:
PART_NOT_AVAILABLE
;
}
}
if
(
ref_cache
[
2
-
1
*
8
]
<
0
||
ref_cache
[
4
-
1
*
8
]
<
0
)
{
if
(
ref_cache
[
2
-
1
*
8
]
<
0
||
ref_cache
[
4
-
1
*
8
]
<
0
)
{
if
(
USES_LIST
(
topleft_type
,
list
))
{
if
(
USES_LIST
(
topleft_type
,
list
))
{
const
int
b_xy
=
h
->
mb2b_xy
[
topleft_xy
]
+
3
+
b_stride
+
const
int
b_xy
=
h
->
mb2b_xy
[
topleft_xy
]
+
3
+
b_stride
+
(
h
->
topleft_partition
&
2
*
b_stride
);
(
h
->
topleft_partition
&
2
*
b_stride
);
...
...
libavcodec/h264dsp.c
View file @
4fb1221e
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
*/
*/
#include <stdint.h>
#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
#include "libavutil/avassert.h"
#include "libavutil/avassert.h"
...
...
libavcodec/vda_h264.c
View file @
4fb1221e
...
@@ -33,7 +33,7 @@ struct vda_buffer {
...
@@ -33,7 +33,7 @@ struct vda_buffer {
};
};
/* Decoder callback that adds the vda frame to the queue in display order. */
/* Decoder callback that adds the vda frame to the queue in display order. */
static
void
vda_decoder_callback
(
void
*
vda_hw_ctx
,
static
void
vda_decoder_callback
(
void
*
vda_hw_ctx
,
CFDictionaryRef
user_info
,
CFDictionaryRef
user_info
,
OSStatus
status
,
OSStatus
status
,
uint32_t
infoFlags
,
uint32_t
infoFlags
,
...
...
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