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
ce7f1c76
Commit
ce7f1c76
authored
Nov 02, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/hevc: more whitespaces to reduce difference to
064698d3
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
641358ad
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
33 additions
and
27 deletions
+33
-27
hevc.c
libavcodec/hevc.c
+1
-0
hevc.h
libavcodec/hevc.h
+2
-1
hevc_cabac.c
libavcodec/hevc_cabac.c
+1
-2
hevc_filter.c
libavcodec/hevc_filter.c
+1
-0
hevc_parser.c
libavcodec/hevc_parser.c
+1
-1
hevc_ps.c
libavcodec/hevc_ps.c
+22
-21
hevcdsp.c
libavcodec/hevcdsp.c
+2
-2
hevcpred.c
libavcodec/hevcpred.c
+1
-0
hevcpred_template.c
libavcodec/hevcpred_template.c
+2
-0
No files found.
libavcodec/hevc.c
View file @
ce7f1c76
...
...
@@ -29,6 +29,7 @@
#include "libavutil/internal.h"
#include "libavutil/md5.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "bytestream.h"
...
...
libavcodec/hevc.h
View file @
ce7f1c76
...
...
@@ -33,6 +33,7 @@
#include "hevcpred.h"
#include "hevcdsp.h"
#include "internal.h"
#include "thread.h"
#include "videodsp.h"
...
...
@@ -951,7 +952,6 @@ int ff_hevc_transform_skip_flag_decode(HEVCContext *s, int c_idx);
* Get the number of candidate references for the current frame.
*/
int
ff_hevc_frame_nb_refs
(
HEVCContext
*
s
);
int
ff_hevc_set_new_ref
(
HEVCContext
*
s
,
AVFrame
**
frame
,
int
poc
);
/**
...
...
@@ -981,6 +981,7 @@ int ff_hevc_cu_qp_delta_sign_flag(HEVCContext *s);
int
ff_hevc_cu_qp_delta_abs
(
HEVCContext
*
s
);
void
ff_hevc_hls_filter
(
HEVCContext
*
s
,
int
x
,
int
y
);
void
ff_hevc_hls_filters
(
HEVCContext
*
s
,
int
x_ctb
,
int
y_ctb
,
int
ctb_size
);
void
ff_hevc_hls_residual_coding
(
HEVCContext
*
s
,
int
x0
,
int
y0
,
int
log2_trafo_size
,
enum
ScanType
scan_idx
,
int
c_idx
);
...
...
libavcodec/hevc_cabac.c
View file @
ce7f1c76
...
...
@@ -320,8 +320,7 @@ static const uint8_t init_values[3][HEVC_CONTEXTS] = {
154
,
196
,
167
,
167
,
154
,
152
,
167
,
182
,
182
,
134
,
149
,
136
,
153
,
121
,
136
,
122
,
169
,
208
,
166
,
167
,
154
,
152
,
167
,
182
,
// coeff_abs_level_greater2_flag
107
,
167
,
91
,
107
,
107
,
167
,
},
107
,
167
,
91
,
107
,
107
,
167
,
},
};
static
const
uint8_t
scan_1x1
[
1
]
=
{
...
...
libavcodec/hevc_filter.c
View file @
ce7f1c76
...
...
@@ -28,6 +28,7 @@
#include "cabac_functions.h"
#include "golomb.h"
#include "hevc.h"
#include "bit_depth_template.c"
#define LUMA 0
...
...
libavcodec/hevc_parser.c
View file @
ce7f1c76
libavcodec/hevc_ps.c
View file @
ce7f1c76
...
...
@@ -875,7 +875,8 @@ int ff_hevc_decode_nal_sps(HEVCContext *s)
ret
=
AVERROR_INVALIDDATA
;
goto
err
;
}
av_log
(
s
->
avctx
,
AV_LOG_WARNING
,
"Displaying the whole video surface.
\n
"
);
av_log
(
s
->
avctx
,
AV_LOG_WARNING
,
"Displaying the whole video surface.
\n
"
);
sps
->
pic_conf_win
.
left_offset
=
sps
->
pic_conf_win
.
right_offset
=
sps
->
pic_conf_win
.
top_offset
=
...
...
libavcodec/hevcdsp.c
View file @
ce7f1c76
libavcodec/hevcpred.c
View file @
ce7f1c76
...
...
@@ -21,6 +21,7 @@
*/
#include "hevc.h"
#include "hevcpred.h"
#define BIT_DEPTH 8
...
...
libavcodec/hevcpred_template.c
View file @
ce7f1c76
...
...
@@ -21,6 +21,7 @@
*/
#include "libavutil/pixdesc.h"
#include "bit_depth_template.c"
#include "hevcpred.h"
...
...
@@ -557,4 +558,5 @@ static void FUNC(pred_angular_3)(uint8_t *src, const uint8_t *top,
{
FUNC
(
pred_angular
)(
src
,
top
,
left
,
stride
,
c_idx
,
mode
,
1
<<
5
);
}
#undef POS
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