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
5362df2e
Commit
5362df2e
authored
Jul 22, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: remove unused sd variables
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
3d083f6f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
4 deletions
+1
-4
dnxhdenc.c
libavcodec/dnxhdenc.c
+1
-1
libxavs.c
libavcodec/libxavs.c
+0
-1
mpegvideo_enc.c
libavcodec/mpegvideo_enc.c
+0
-1
svq1enc.c
libavcodec/svq1enc.c
+0
-1
No files found.
libavcodec/dnxhdenc.c
View file @
5362df2e
...
...
@@ -1058,7 +1058,7 @@ static int dnxhd_encode_picture(AVCodecContext *avctx, AVPacket *pkt,
DNXHDEncContext
*
ctx
=
avctx
->
priv_data
;
int
first_field
=
1
;
int
offset
,
i
,
ret
;
uint8_t
*
buf
,
*
sd
;
uint8_t
*
buf
;
if
((
ret
=
ff_alloc_packet2
(
avctx
,
pkt
,
ctx
->
cid_table
->
frame_size
))
<
0
)
return
ret
;
...
...
libavcodec/libxavs.c
View file @
5362df2e
...
...
@@ -117,7 +117,6 @@ static int XAVS_frame(AVCodecContext *avctx, AVPacket *pkt,
xavs_nal_t
*
nal
;
int
nnal
,
i
,
ret
;
xavs_picture_t
pic_out
;
uint8_t
*
sd
;
int
pict_type
;
x4
->
pic
.
img
.
i_csp
=
XAVS_CSP_I420
;
...
...
libavcodec/mpegvideo_enc.c
View file @
5362df2e
...
...
@@ -1735,7 +1735,6 @@ int ff_mpv_encode_picture(AVCodecContext *avctx, AVPacket *pkt,
/* output? */
if
(
s
->
new_picture
.
f
->
data
[
0
])
{
uint8_t
*
sd
;
int
growing_buffer
=
context_count
==
1
&&
!
pkt
->
data
&&
!
s
->
data_partitioning
;
int
pkt_size
=
growing_buffer
?
FFMAX
(
s
->
mb_width
*
s
->
mb_height
*
64
+
10000
,
avctx
->
internal
->
byte_buffer_size
)
-
FF_INPUT_BUFFER_PADDING_SIZE
:
...
...
libavcodec/svq1enc.c
View file @
5362df2e
...
...
@@ -574,7 +574,6 @@ static int svq1_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
{
SVQ1EncContext
*
const
s
=
avctx
->
priv_data
;
int
i
,
ret
;
uint8_t
*
sd
;
if
((
ret
=
ff_alloc_packet2
(
avctx
,
pkt
,
s
->
y_block_width
*
s
->
y_block_height
*
MAX_MB_BYTES
*
3
+
FF_MIN_BUFFER_SIZE
))
<
0
)
...
...
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