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
610219a5
Commit
610219a5
authored
Feb 16, 2011
by
Anton Khirnov
Committed by
Mans Rullgard
Feb 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf: add av_ prefix to dump_format()
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
2c35a6bd
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
33 additions
and
13 deletions
+33
-13
ffmpeg.c
ffmpeg.c
+5
-5
ffplay.c
ffplay.c
+1
-1
ffprobe.c
ffprobe.c
+1
-1
avformat.h
libavformat/avformat.h
+11
-4
movenchint.c
libavformat/movenchint.c
+1
-1
output-example.c
libavformat/output-example.c
+1
-1
utils.c
libavformat/utils.c
+10
-0
version.h
libavformat/version.h
+3
-0
No files found.
ffmpeg.c
View file @
610219a5
...
...
@@ -1977,7 +1977,7 @@ static int transcode(AVFormatContext **output_files,
for
(
i
=
0
;
i
<
nb_output_files
;
i
++
)
{
os
=
output_files
[
i
];
if
(
!
os
->
nb_streams
&&
!
(
os
->
oformat
->
flags
&
AVFMT_NOSTREAMS
))
{
dump_format
(
output_files
[
i
],
i
,
output_files
[
i
]
->
filename
,
1
);
av_
dump_format
(
output_files
[
i
],
i
,
output_files
[
i
]
->
filename
,
1
);
fprintf
(
stderr
,
"Output file #%d does not contain any stream
\n
"
,
i
);
ret
=
AVERROR
(
EINVAL
);
goto
fail
;
...
...
@@ -2028,7 +2028,7 @@ static int transcode(AVFormatContext **output_files,
/* Sanity check that the stream types match */
if
(
ist_table
[
ost
->
source_index
]
->
st
->
codec
->
codec_type
!=
ost
->
st
->
codec
->
codec_type
)
{
int
i
=
ost
->
file_index
;
dump_format
(
output_files
[
i
],
i
,
output_files
[
i
]
->
filename
,
1
);
av_
dump_format
(
output_files
[
i
],
i
,
output_files
[
i
]
->
filename
,
1
);
fprintf
(
stderr
,
"Codec type mismatch for mapping #%d.%d -> #%d.%d
\n
"
,
stream_maps
[
n
].
file_index
,
stream_maps
[
n
].
stream_index
,
ost
->
file_index
,
ost
->
index
);
...
...
@@ -2079,7 +2079,7 @@ static int transcode(AVFormatContext **output_files,
}
if
(
!
found
)
{
int
i
=
ost
->
file_index
;
dump_format
(
output_files
[
i
],
i
,
output_files
[
i
]
->
filename
,
1
);
av_
dump_format
(
output_files
[
i
],
i
,
output_files
[
i
]
->
filename
,
1
);
fprintf
(
stderr
,
"Could not find input stream matching output stream #%d.%d
\n
"
,
ost
->
file_index
,
ost
->
index
);
ffmpeg_exit
(
1
);
...
...
@@ -2459,7 +2459,7 @@ static int transcode(AVFormatContext **output_files,
/* dump the file output parameters - cannot be done before in case
of stream copy */
for
(
i
=
0
;
i
<
nb_output_files
;
i
++
)
{
dump_format
(
output_files
[
i
],
i
,
output_files
[
i
]
->
filename
,
1
);
av_
dump_format
(
output_files
[
i
],
i
,
output_files
[
i
]
->
filename
,
1
);
}
/* dump the stream mapping */
...
...
@@ -3309,7 +3309,7 @@ static void opt_input_file(const char *filename)
input_files_ts_offset
[
nb_input_files
]
=
input_ts_offset
-
(
copy_ts
?
0
:
timestamp
);
/* dump the file content */
if
(
verbose
>=
0
)
dump_format
(
ic
,
nb_input_files
,
filename
,
0
);
av_
dump_format
(
ic
,
nb_input_files
,
filename
,
0
);
nb_input_files
++
;
...
...
ffplay.c
View file @
610219a5
...
...
@@ -2464,7 +2464,7 @@ static int decode_thread(void *arg)
st_index
[
AVMEDIA_TYPE_VIDEO
]),
NULL
,
0
);
if
(
show_status
)
{
dump_format
(
ic
,
0
,
is
->
filename
,
0
);
av_
dump_format
(
ic
,
0
,
is
->
filename
,
0
);
}
/* open the streams */
...
...
ffprobe.c
View file @
610219a5
...
...
@@ -277,7 +277,7 @@ static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename)
return
err
;
}
dump_format
(
fmt_ctx
,
0
,
filename
,
0
);
av_
dump_format
(
fmt_ctx
,
0
,
filename
,
0
);
/* bind a decoder to each input stream */
for
(
i
=
0
;
i
<
fmt_ctx
->
nb_streams
;
i
++
)
{
...
...
libavformat/avformat.h
View file @
610219a5
...
...
@@ -1450,10 +1450,17 @@ int av_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
*/
int
av_write_trailer
(
AVFormatContext
*
s
);
void
dump_format
(
AVFormatContext
*
ic
,
int
index
,
const
char
*
url
,
int
is_output
);
#if FF_API_DUMP_FORMAT
attribute_deprecated
void
dump_format
(
AVFormatContext
*
ic
,
int
index
,
const
char
*
url
,
int
is_output
);
#endif
void
av_dump_format
(
AVFormatContext
*
ic
,
int
index
,
const
char
*
url
,
int
is_output
);
#if FF_API_PARSE_FRAME_PARAM
/**
...
...
libavformat/movenchint.c
View file @
610219a5
...
...
@@ -57,7 +57,7 @@ fail:
av_log
(
s
,
AV_LOG_WARNING
,
"Unable to initialize hinting of stream %d
\n
"
,
src_index
);
av_freep
(
&
track
->
enc
);
/* Set a default timescale, to avoid crashes in dump_format */
/* Set a default timescale, to avoid crashes in
av_
dump_format */
track
->
timescale
=
90000
;
return
ret
;
}
...
...
libavformat/output-example.c
View file @
610219a5
...
...
@@ -481,7 +481,7 @@ int main(int argc, char **argv)
exit
(
1
);
}
dump_format
(
oc
,
0
,
filename
,
1
);
av_
dump_format
(
oc
,
0
,
filename
,
1
);
/* now that all the parameters are set, we can open the audio and
video codecs and allocate the necessary encode buffers */
...
...
libavformat/utils.c
View file @
610219a5
...
...
@@ -3261,10 +3261,20 @@ static void dump_stream_format(AVFormatContext *ic, int i, int index, int is_out
dump_metadata
(
NULL
,
st
->
metadata
,
" "
);
}
#if FF_API_DUMP_FORMAT
void
dump_format
(
AVFormatContext
*
ic
,
int
index
,
const
char
*
url
,
int
is_output
)
{
av_dump_format
(
ic
,
index
,
url
,
is_output
);
}
#endif
void
av_dump_format
(
AVFormatContext
*
ic
,
int
index
,
const
char
*
url
,
int
is_output
)
{
int
i
;
uint8_t
*
printed
=
av_mallocz
(
ic
->
nb_streams
);
...
...
libavformat/version.h
View file @
610219a5
...
...
@@ -92,5 +92,8 @@
#ifndef FF_API_INDEX_BUILT
#define FF_API_INDEX_BUILT (LIBAVFORMAT_VERSION_MAJOR < 53)
#endif
#ifndef FF_API_DUMP_FORMAT
#define FF_API_DUMP_FORMAT (LIBAVFORMAT_VERSION_MAJOR < 54)
#endif
#endif //AVFORMAT_VERSION_H
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