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
7a48b1c4
Commit
7a48b1c4
authored
Aug 12, 2013
by
Alexis Ballier
Committed by
Michael Niedermayer
Aug 13, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove FF_API_PKT_DUMP cruft. Not compiled since libavformat 54.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
ca2378ad
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
25 deletions
+0
-25
avformat.h
libavformat/avformat.h
+0
-6
utils.c
libavformat/utils.c
+0
-16
version.h
libavformat/version.h
+0
-3
No files found.
libavformat/avformat.h
View file @
7a48b1c4
...
...
@@ -1423,12 +1423,6 @@ AVProgram *av_new_program(AVFormatContext *s, int id);
*/
#if FF_API_PKT_DUMP
attribute_deprecated
void
av_pkt_dump
(
FILE
*
f
,
AVPacket
*
pkt
,
int
dump_payload
);
attribute_deprecated
void
av_pkt_dump_log
(
void
*
avcl
,
int
level
,
AVPacket
*
pkt
,
int
dump_payload
);
#endif
#if FF_API_ALLOC_OUTPUT_CONTEXT
/**
* @deprecated deprecated in favor of avformat_alloc_output_context2()
...
...
libavformat/utils.c
View file @
7a48b1c4
...
...
@@ -3709,27 +3709,11 @@ static void pkt_dump_internal(void *avcl, FILE *f, int level, AVPacket *pkt, int
av_hex_dump
(
f
,
pkt
->
data
,
pkt
->
size
);
}
#if FF_API_PKT_DUMP
void
av_pkt_dump
(
FILE
*
f
,
AVPacket
*
pkt
,
int
dump_payload
)
{
AVRational
tb
=
{
1
,
AV_TIME_BASE
};
pkt_dump_internal
(
NULL
,
f
,
0
,
pkt
,
dump_payload
,
tb
);
}
#endif
void
av_pkt_dump2
(
FILE
*
f
,
AVPacket
*
pkt
,
int
dump_payload
,
AVStream
*
st
)
{
pkt_dump_internal
(
NULL
,
f
,
0
,
pkt
,
dump_payload
,
st
->
time_base
);
}
#if FF_API_PKT_DUMP
void
av_pkt_dump_log
(
void
*
avcl
,
int
level
,
AVPacket
*
pkt
,
int
dump_payload
)
{
AVRational
tb
=
{
1
,
AV_TIME_BASE
};
pkt_dump_internal
(
avcl
,
NULL
,
level
,
pkt
,
dump_payload
,
tb
);
}
#endif
void
av_pkt_dump_log2
(
void
*
avcl
,
int
level
,
AVPacket
*
pkt
,
int
dump_payload
,
AVStream
*
st
)
{
...
...
libavformat/version.h
View file @
7a48b1c4
...
...
@@ -49,9 +49,6 @@
* the public API and may change, break or disappear at any time.
*/
#ifndef FF_API_PKT_DUMP
#define FF_API_PKT_DUMP (LIBAVFORMAT_VERSION_MAJOR < 54)
#endif
#ifndef FF_API_ALLOC_OUTPUT_CONTEXT
#define FF_API_ALLOC_OUTPUT_CONTEXT (LIBAVFORMAT_VERSION_MAJOR < 56)
#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