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
ca4df37f
Commit
ca4df37f
authored
Oct 22, 2017
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat: remove ABI portion of the side data merging API
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
382aaa33
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
33 deletions
+1
-33
mux.c
libavformat/mux.c
+1
-23
utils.c
libavformat/utils.c
+0
-7
version.h
libavformat/version.h
+0
-3
No files found.
libavformat/mux.c
View file @
ca4df37f
...
...
@@ -674,7 +674,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
*/
static
int
write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
{
int
ret
,
did_split
;
int
ret
;
int64_t
pts_backup
,
dts_backup
;
pts_backup
=
pkt
->
pts
;
...
...
@@ -739,12 +739,6 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
}
}
#if FF_API_LAVF_MERGE_SD
FF_DISABLE_DEPRECATION_WARNINGS
did_split
=
av_packet_split_side_data
(
pkt
);
FF_ENABLE_DEPRECATION_WARNINGS
#endif
if
(
!
s
->
internal
->
header_written
)
{
ret
=
s
->
internal
->
write_header_ret
?
s
->
internal
->
write_header_ret
:
write_header_internal
(
s
);
if
(
ret
<
0
)
...
...
@@ -767,12 +761,6 @@ FF_ENABLE_DEPRECATION_WARNINGS
}
fail
:
#if FF_API_LAVF_MERGE_SD
FF_DISABLE_DEPRECATION_WARNINGS
if
(
did_split
)
av_packet_merge_side_data
(
pkt
);
FF_ENABLE_DEPRECATION_WARNINGS
#endif
if
(
ret
<
0
)
{
pkt
->
pts
=
pts_backup
;
...
...
@@ -869,16 +857,6 @@ static int do_packet_auto_bsf(AVFormatContext *s, AVPacket *pkt) {
}
}
#if FF_API_LAVF_MERGE_SD
FF_DISABLE_DEPRECATION_WARNINGS
if
(
st
->
internal
->
nb_bsfcs
)
{
ret
=
av_packet_split_side_data
(
pkt
);
if
(
ret
<
0
)
av_log
(
s
,
AV_LOG_WARNING
,
"Failed to split side data before bitstream filter
\n
"
);
}
FF_ENABLE_DEPRECATION_WARNINGS
#endif
for
(
i
=
0
;
i
<
st
->
internal
->
nb_bsfcs
;
i
++
)
{
AVBSFContext
*
ctx
=
st
->
internal
->
bsfcs
[
i
];
// TODO: when any bitstream filter requires flushing at EOF, we'll need to
...
...
libavformat/utils.c
View file @
ca4df37f
...
...
@@ -1677,13 +1677,6 @@ FF_ENABLE_DEPRECATION_WARNINGS
}
st
->
inject_global_side_data
=
0
;
}
#if FF_API_LAVF_MERGE_SD
FF_DISABLE_DEPRECATION_WARNINGS
if
(
!
(
s
->
flags
&
AVFMT_FLAG_KEEP_SIDE_DATA
))
av_packet_merge_side_data
(
pkt
);
FF_ENABLE_DEPRECATION_WARNINGS
#endif
}
av_opt_get_dict_val
(
s
,
"metadata"
,
AV_OPT_SEARCH_CHILDREN
,
&
metadata
);
...
...
libavformat/version.h
View file @
ca4df37f
...
...
@@ -76,9 +76,6 @@
#ifndef FF_API_HLS_WRAP
#define FF_API_HLS_WRAP (LIBAVFORMAT_VERSION_MAJOR < 59)
#endif
#ifndef FF_API_LAVF_MERGE_SD
#define FF_API_LAVF_MERGE_SD (LIBAVFORMAT_VERSION_MAJOR < 58)
#endif
#ifndef FF_API_LAVF_KEEPSIDE_FLAG
#define FF_API_LAVF_KEEPSIDE_FLAG (LIBAVFORMAT_VERSION_MAJOR < 59)
#endif
...
...
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