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
98fd8a78
Commit
98fd8a78
authored
Aug 11, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: Remove ff_packet_free_side_data, use av_packet_free_side_data
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
a5ef7960
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
18 deletions
+4
-18
avpacket.c
libavcodec/avpacket.c
+0
-9
internal.h
libavcodec/internal.h
+0
-5
utils.c
libavcodec/utils.c
+4
-4
No files found.
libavcodec/avpacket.c
View file @
98fd8a78
...
...
@@ -29,15 +29,6 @@
#include "bytestream.h"
#include "internal.h"
void
ff_packet_free_side_data
(
AVPacket
*
pkt
)
{
int
i
;
for
(
i
=
0
;
i
<
pkt
->
side_data_elems
;
i
++
)
av_free
(
pkt
->
side_data
[
i
].
data
);
av_freep
(
&
pkt
->
side_data
);
pkt
->
side_data_elems
=
0
;
}
#if FF_API_DESTRUCT_PACKET
void
av_destruct_packet
(
AVPacket
*
pkt
)
...
...
libavcodec/internal.h
View file @
98fd8a78
...
...
@@ -140,11 +140,6 @@ int ff_init_buffer_info(AVCodecContext *s, AVFrame *frame);
void
avpriv_color_frame
(
AVFrame
*
frame
,
const
int
color
[
4
]);
/**
* Remove and free all side data from packet.
*/
void
ff_packet_free_side_data
(
AVPacket
*
pkt
);
extern
volatile
int
ff_avcodec_locked
;
int
ff_lock_avcodec
(
AVCodecContext
*
log_ctx
);
int
ff_unlock_avcodec
(
void
);
...
...
libavcodec/utils.c
View file @
98fd8a78
...
...
@@ -1712,7 +1712,7 @@ int attribute_align_arg avcodec_encode_audio(AVCodecContext *avctx,
avctx
->
coded_frame
->
key_frame
=
!!
(
pkt
.
flags
&
AV_PKT_FLAG_KEY
);
}
/* free any side data since we cannot return it */
ff
_packet_free_side_data
(
&
pkt
);
av
_packet_free_side_data
(
&
pkt
);
if
(
frame
&&
frame
->
extended_data
!=
frame
->
data
)
av_freep
(
&
frame
->
extended_data
);
...
...
@@ -2001,7 +2001,7 @@ int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *pi
avctx
->
pkt
=
NULL
;
if
(
did_split
)
{
ff
_packet_free_side_data
(
&
tmp
);
av
_packet_free_side_data
(
&
tmp
);
if
(
ret
==
tmp
.
size
)
ret
=
avpkt
->
size
;
}
...
...
@@ -2177,7 +2177,7 @@ int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
avctx
->
pkt
=
NULL
;
if
(
did_split
)
{
ff
_packet_free_side_data
(
&
tmp
);
av
_packet_free_side_data
(
&
tmp
);
if
(
ret
==
tmp
.
size
)
ret
=
avpkt
->
size
;
}
...
...
@@ -2352,7 +2352,7 @@ int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
}
if
(
did_split
)
{
ff
_packet_free_side_data
(
&
tmp
);
av
_packet_free_side_data
(
&
tmp
);
if
(
ret
==
tmp
.
size
)
ret
=
avpkt
->
size
;
}
...
...
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