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
6bc2808c
Commit
6bc2808c
authored
Aug 06, 2016
by
Mark Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vaapi_mpeg2: Constify pointers
(cherry picked from commit
ee906129
)
parent
d0897da9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
vaapi_mpeg2.c
libavcodec/vaapi_mpeg2.c
+6
-6
No files found.
libavcodec/vaapi_mpeg2.c
View file @
6bc2808c
...
...
@@ -26,22 +26,22 @@
#include "internal.h"
/** Reconstruct bitstream f_code */
static
inline
int
mpeg2_get_f_code
(
MpegEncContext
*
s
)
static
inline
int
mpeg2_get_f_code
(
const
MpegEncContext
*
s
)
{
return
(
s
->
mpeg_f_code
[
0
][
0
]
<<
12
)
|
(
s
->
mpeg_f_code
[
0
][
1
]
<<
8
)
|
(
s
->
mpeg_f_code
[
1
][
0
]
<<
4
)
|
s
->
mpeg_f_code
[
1
][
1
];
}
/** Determine frame start: first field for field picture or frame picture */
static
inline
int
mpeg2_get_is_frame_start
(
MpegEncContext
*
s
)
static
inline
int
mpeg2_get_is_frame_start
(
const
MpegEncContext
*
s
)
{
return
s
->
first_field
||
s
->
picture_structure
==
PICT_FRAME
;
}
static
int
vaapi_mpeg2_start_frame
(
AVCodecContext
*
avctx
,
av_unused
const
uint8_t
*
buffer
,
av_unused
uint32_t
size
)
{
struct
MpegEncContext
*
const
s
=
avctx
->
priv_data
;
FFVAContext
*
const
vactx
=
ff_vaapi_get_context
(
avctx
);
const
MpegEncContext
*
s
=
avctx
->
priv_data
;
FFVAContext
*
vactx
=
ff_vaapi_get_context
(
avctx
);
VAPictureParameterBufferMPEG2
*
pic_param
;
VAIQMatrixBufferMPEG2
*
iq_matrix
;
int
i
;
...
...
@@ -101,8 +101,8 @@ static int vaapi_mpeg2_start_frame(AVCodecContext *avctx, av_unused const uint8_
static
int
vaapi_mpeg2_decode_slice
(
AVCodecContext
*
avctx
,
const
uint8_t
*
buffer
,
uint32_t
size
)
{
MpegEncContext
*
const
s
=
avctx
->
priv_data
;
FFVAContext
*
const
vactx
=
ff_vaapi_get_context
(
avctx
);
const
MpegEncContext
*
s
=
avctx
->
priv_data
;
FFVAContext
*
vactx
=
ff_vaapi_get_context
(
avctx
);
VASliceParameterBufferMPEG2
*
slice_param
;
GetBitContext
gb
;
uint32_t
quantiser_scale_code
,
intra_slice_flag
,
macroblock_offset
;
...
...
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