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
5f1c3cbd
Commit
5f1c3cbd
authored
Apr 14, 2016
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vaapi: Drop pointless debug output
parent
015c2d92
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
20 deletions
+0
-20
vaapi.c
libavcodec/vaapi.c
+0
-2
vaapi_h264.c
libavcodec/vaapi_h264.c
+0
-6
vaapi_mpeg2.c
libavcodec/vaapi_mpeg2.c
+0
-4
vaapi_mpeg4.c
libavcodec/vaapi_mpeg4.c
+0
-4
vaapi_vc1.c
libavcodec/vaapi_vc1.c
+0
-4
No files found.
libavcodec/vaapi.c
View file @
5f1c3cbd
...
@@ -181,8 +181,6 @@ void ff_vaapi_common_end_frame(AVCodecContext *avctx)
...
@@ -181,8 +181,6 @@ void ff_vaapi_common_end_frame(AVCodecContext *avctx)
{
{
struct
vaapi_context
*
const
vactx
=
avctx
->
hwaccel_context
;
struct
vaapi_context
*
const
vactx
=
avctx
->
hwaccel_context
;
ff_dlog
(
avctx
,
"ff_vaapi_common_end_frame()
\n
"
);
destroy_buffers
(
vactx
->
display
,
&
vactx
->
pic_param_buf_id
,
1
);
destroy_buffers
(
vactx
->
display
,
&
vactx
->
pic_param_buf_id
,
1
);
destroy_buffers
(
vactx
->
display
,
&
vactx
->
iq_matrix_buf_id
,
1
);
destroy_buffers
(
vactx
->
display
,
&
vactx
->
iq_matrix_buf_id
,
1
);
destroy_buffers
(
vactx
->
display
,
&
vactx
->
bitplane_buf_id
,
1
);
destroy_buffers
(
vactx
->
display
,
&
vactx
->
bitplane_buf_id
,
1
);
...
...
libavcodec/vaapi_h264.c
View file @
5f1c3cbd
...
@@ -232,8 +232,6 @@ static int vaapi_h264_start_frame(AVCodecContext *avctx,
...
@@ -232,8 +232,6 @@ static int vaapi_h264_start_frame(AVCodecContext *avctx,
VAPictureParameterBufferH264
*
pic_param
;
VAPictureParameterBufferH264
*
pic_param
;
VAIQMatrixBufferH264
*
iq_matrix
;
VAIQMatrixBufferH264
*
iq_matrix
;
ff_dlog
(
avctx
,
"vaapi_h264_start_frame()
\n
"
);
vactx
->
slice_param_size
=
sizeof
(
VASliceParameterBufferH264
);
vactx
->
slice_param_size
=
sizeof
(
VASliceParameterBufferH264
);
/* Fill in VAPictureParameterBufferH264. */
/* Fill in VAPictureParameterBufferH264. */
...
@@ -298,7 +296,6 @@ static int vaapi_h264_end_frame(AVCodecContext *avctx)
...
@@ -298,7 +296,6 @@ static int vaapi_h264_end_frame(AVCodecContext *avctx)
H264SliceContext
*
sl
=
&
h
->
slice_ctx
[
0
];
H264SliceContext
*
sl
=
&
h
->
slice_ctx
[
0
];
int
ret
;
int
ret
;
ff_dlog
(
avctx
,
"vaapi_h264_end_frame()
\n
"
);
ret
=
ff_vaapi_commit_slices
(
vactx
);
ret
=
ff_vaapi_commit_slices
(
vactx
);
if
(
ret
<
0
)
if
(
ret
<
0
)
goto
finish
;
goto
finish
;
...
@@ -323,9 +320,6 @@ static int vaapi_h264_decode_slice(AVCodecContext *avctx,
...
@@ -323,9 +320,6 @@ static int vaapi_h264_decode_slice(AVCodecContext *avctx,
H264SliceContext
*
sl
=
&
h
->
slice_ctx
[
0
];
H264SliceContext
*
sl
=
&
h
->
slice_ctx
[
0
];
VASliceParameterBufferH264
*
slice_param
;
VASliceParameterBufferH264
*
slice_param
;
ff_dlog
(
avctx
,
"vaapi_h264_decode_slice(): buffer %p, size %d
\n
"
,
buffer
,
size
);
/* Fill in VASliceParameterBufferH264. */
/* Fill in VASliceParameterBufferH264. */
slice_param
=
(
VASliceParameterBufferH264
*
)
ff_vaapi_alloc_slice
(
avctx
->
hwaccel_context
,
buffer
,
size
);
slice_param
=
(
VASliceParameterBufferH264
*
)
ff_vaapi_alloc_slice
(
avctx
->
hwaccel_context
,
buffer
,
size
);
if
(
!
slice_param
)
if
(
!
slice_param
)
...
...
libavcodec/vaapi_mpeg2.c
View file @
5f1c3cbd
...
@@ -46,8 +46,6 @@ static int vaapi_mpeg2_start_frame(AVCodecContext *avctx, av_unused const uint8_
...
@@ -46,8 +46,6 @@ static int vaapi_mpeg2_start_frame(AVCodecContext *avctx, av_unused const uint8_
VAIQMatrixBufferMPEG2
*
iq_matrix
;
VAIQMatrixBufferMPEG2
*
iq_matrix
;
int
i
;
int
i
;
ff_dlog
(
avctx
,
"vaapi_mpeg2_start_frame()
\n
"
);
vactx
->
slice_param_size
=
sizeof
(
VASliceParameterBufferMPEG2
);
vactx
->
slice_param_size
=
sizeof
(
VASliceParameterBufferMPEG2
);
/* Fill in VAPictureParameterBufferMPEG2 */
/* Fill in VAPictureParameterBufferMPEG2 */
...
@@ -108,8 +106,6 @@ static int vaapi_mpeg2_decode_slice(AVCodecContext *avctx, const uint8_t *buffer
...
@@ -108,8 +106,6 @@ static int vaapi_mpeg2_decode_slice(AVCodecContext *avctx, const uint8_t *buffer
GetBitContext
gb
;
GetBitContext
gb
;
uint32_t
quantiser_scale_code
,
intra_slice_flag
,
macroblock_offset
;
uint32_t
quantiser_scale_code
,
intra_slice_flag
,
macroblock_offset
;
ff_dlog
(
avctx
,
"vaapi_mpeg2_decode_slice(): buffer %p, size %d
\n
"
,
buffer
,
size
);
/* Determine macroblock_offset */
/* Determine macroblock_offset */
init_get_bits
(
&
gb
,
buffer
,
8
*
size
);
init_get_bits
(
&
gb
,
buffer
,
8
*
size
);
if
(
get_bits_long
(
&
gb
,
32
)
>>
8
!=
1
)
/* start code */
if
(
get_bits_long
(
&
gb
,
32
)
>>
8
!=
1
)
/* start code */
...
...
libavcodec/vaapi_mpeg4.c
View file @
5f1c3cbd
...
@@ -51,8 +51,6 @@ static int vaapi_mpeg4_start_frame(AVCodecContext *avctx, av_unused const uint8_
...
@@ -51,8 +51,6 @@ static int vaapi_mpeg4_start_frame(AVCodecContext *avctx, av_unused const uint8_
VAIQMatrixBufferMPEG4
*
iq_matrix
;
VAIQMatrixBufferMPEG4
*
iq_matrix
;
int
i
;
int
i
;
ff_dlog
(
avctx
,
"vaapi_mpeg4_start_frame()
\n
"
);
vactx
->
slice_param_size
=
sizeof
(
VASliceParameterBufferMPEG4
);
vactx
->
slice_param_size
=
sizeof
(
VASliceParameterBufferMPEG4
);
/* Fill in VAPictureParameterBufferMPEG4 */
/* Fill in VAPictureParameterBufferMPEG4 */
...
@@ -124,8 +122,6 @@ static int vaapi_mpeg4_decode_slice(AVCodecContext *avctx, const uint8_t *buffer
...
@@ -124,8 +122,6 @@ static int vaapi_mpeg4_decode_slice(AVCodecContext *avctx, const uint8_t *buffer
MpegEncContext
*
const
s
=
avctx
->
priv_data
;
MpegEncContext
*
const
s
=
avctx
->
priv_data
;
VASliceParameterBufferMPEG4
*
slice_param
;
VASliceParameterBufferMPEG4
*
slice_param
;
ff_dlog
(
avctx
,
"vaapi_mpeg4_decode_slice(): buffer %p, size %d
\n
"
,
buffer
,
size
);
/* video_plane_with_short_video_header() contains all GOBs
/* video_plane_with_short_video_header() contains all GOBs
* in-order, and this is what VA API (Intel backend) expects: only
* in-order, and this is what VA API (Intel backend) expects: only
* a single slice param. So fake macroblock_number for Libav so
* a single slice param. So fake macroblock_number for Libav so
...
...
libavcodec/vaapi_vc1.c
View file @
5f1c3cbd
...
@@ -151,8 +151,6 @@ static int vaapi_vc1_start_frame(AVCodecContext *avctx, av_unused const uint8_t
...
@@ -151,8 +151,6 @@ static int vaapi_vc1_start_frame(AVCodecContext *avctx, av_unused const uint8_t
struct
vaapi_context
*
const
vactx
=
avctx
->
hwaccel_context
;
struct
vaapi_context
*
const
vactx
=
avctx
->
hwaccel_context
;
VAPictureParameterBufferVC1
*
pic_param
;
VAPictureParameterBufferVC1
*
pic_param
;
ff_dlog
(
avctx
,
"vaapi_vc1_start_frame()
\n
"
);
vactx
->
slice_param_size
=
sizeof
(
VASliceParameterBufferVC1
);
vactx
->
slice_param_size
=
sizeof
(
VASliceParameterBufferVC1
);
/* Fill in VAPictureParameterBufferVC1 */
/* Fill in VAPictureParameterBufferVC1 */
...
@@ -317,8 +315,6 @@ static int vaapi_vc1_decode_slice(AVCodecContext *avctx, const uint8_t *buffer,
...
@@ -317,8 +315,6 @@ static int vaapi_vc1_decode_slice(AVCodecContext *avctx, const uint8_t *buffer,
MpegEncContext
*
const
s
=
&
v
->
s
;
MpegEncContext
*
const
s
=
&
v
->
s
;
VASliceParameterBufferVC1
*
slice_param
;
VASliceParameterBufferVC1
*
slice_param
;
ff_dlog
(
avctx
,
"vaapi_vc1_decode_slice(): buffer %p, size %d
\n
"
,
buffer
,
size
);
/* Current bit buffer is beyond any marker for VC-1, so skip it */
/* Current bit buffer is beyond any marker for VC-1, so skip it */
if
(
avctx
->
codec_id
==
AV_CODEC_ID_VC1
&&
IS_MARKER
(
AV_RB32
(
buffer
)))
{
if
(
avctx
->
codec_id
==
AV_CODEC_ID_VC1
&&
IS_MARKER
(
AV_RB32
(
buffer
)))
{
buffer
+=
4
;
buffer
+=
4
;
...
...
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