Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
be545b8a
Commit
be545b8a
authored
May 07, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: K&R formatting cosmetics for header files (part I/II)
parent
d55961fa
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
13 deletions
+22
-13
h264.h
libavcodec/h264.h
+0
-0
h264data.h
libavcodec/h264data.h
+0
-0
h264pred.h
libavcodec/h264pred.h
+22
-13
No files found.
libavcodec/h264.h
View file @
be545b8a
This diff is collapsed.
Click to expand it.
libavcodec/h264data.h
View file @
be545b8a
This diff is collapsed.
Click to expand it.
libavcodec/h264pred.h
View file @
be545b8a
...
...
@@ -89,20 +89,29 @@
/**
* Context for storing H.264 prediction functions
*/
typedef
struct
H264PredContext
{
void
(
*
pred4x4
[
9
+
3
+
3
])(
uint8_t
*
src
,
const
uint8_t
*
topright
,
int
stride
);
//FIXME move to dsp?
void
(
*
pred8x8l
[
9
+
3
])(
uint8_t
*
src
,
int
topleft
,
int
topright
,
int
stride
);
void
(
*
pred8x8
[
4
+
3
+
4
])(
uint8_t
*
src
,
int
stride
);
void
(
*
pred16x16
[
4
+
3
+
2
])(
uint8_t
*
src
,
int
stride
);
typedef
struct
H264PredContext
{
void
(
*
pred4x4
[
9
+
3
+
3
])(
uint8_t
*
src
,
const
uint8_t
*
topright
,
int
stride
);
//FIXME move to dsp?
void
(
*
pred8x8l
[
9
+
3
])(
uint8_t
*
src
,
int
topleft
,
int
topright
,
int
stride
);
void
(
*
pred8x8
[
4
+
3
+
4
])(
uint8_t
*
src
,
int
stride
);
void
(
*
pred16x16
[
4
+
3
+
2
])(
uint8_t
*
src
,
int
stride
);
void
(
*
pred4x4_add
[
2
])(
uint8_t
*
pix
/*align 4*/
,
const
DCTELEM
*
block
/*align 16*/
,
int
stride
);
void
(
*
pred8x8l_add
[
2
])(
uint8_t
*
pix
/*align 8*/
,
const
DCTELEM
*
block
/*align 16*/
,
int
stride
);
void
(
*
pred8x8_add
[
3
])(
uint8_t
*
pix
/*align 8*/
,
const
int
*
block_offset
,
const
DCTELEM
*
block
/*align 16*/
,
int
stride
);
void
(
*
pred16x16_add
[
3
])(
uint8_t
*
pix
/*align 16*/
,
const
int
*
block_offset
,
const
DCTELEM
*
block
/*align 16*/
,
int
stride
);
}
H264PredContext
;
void
(
*
pred4x4_add
[
2
])(
uint8_t
*
pix
/*align 4*/
,
const
DCTELEM
*
block
/*align 16*/
,
int
stride
);
void
(
*
pred8x8l_add
[
2
])(
uint8_t
*
pix
/*align 8*/
,
const
DCTELEM
*
block
/*align 16*/
,
int
stride
);
void
(
*
pred8x8_add
[
3
])(
uint8_t
*
pix
/*align 8*/
,
const
int
*
block_offset
,
const
DCTELEM
*
block
/*align 16*/
,
int
stride
);
void
(
*
pred16x16_add
[
3
])(
uint8_t
*
pix
/*align 16*/
,
const
int
*
block_offset
,
const
DCTELEM
*
block
/*align 16*/
,
int
stride
);
}
H264PredContext
;
void
ff_h264_pred_init
(
H264PredContext
*
h
,
int
codec_id
,
const
int
bit_depth
,
const
int
chroma_format_idc
);
void
ff_h264_pred_init_arm
(
H264PredContext
*
h
,
int
codec_id
,
const
int
bit_depth
,
const
int
chroma_format_idc
);
void
ff_h264_pred_init_x86
(
H264PredContext
*
h
,
int
codec_id
,
const
int
bit_depth
,
const
int
chroma_format_idc
);
void
ff_h264_pred_init
(
H264PredContext
*
h
,
int
codec_id
,
const
int
bit_depth
,
const
int
chroma_format_idc
);
void
ff_h264_pred_init_arm
(
H264PredContext
*
h
,
int
codec_id
,
const
int
bit_depth
,
const
int
chroma_format_idc
);
void
ff_h264_pred_init_x86
(
H264PredContext
*
h
,
int
codec_id
,
const
int
bit_depth
,
const
int
chroma_format_idc
);
#endif
/* AVCODEC_H264PRED_H */
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