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
39ec5e1c
Commit
39ec5e1c
authored
May 31, 2014
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: Report the codec and the encoder separately
Bug-Id: 694
parent
95b7fa17
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
4 deletions
+26
-4
avconv.c
avconv.c
+26
-4
No files found.
avconv.c
View file @
39ec5e1c
...
...
@@ -2081,10 +2081,32 @@ static int transcode_init(void)
ost
->
sync_ist
->
st
->
index
);
if
(
ost
->
stream_copy
)
av_log
(
NULL
,
AV_LOG_INFO
,
" (copy)"
);
else
av_log
(
NULL
,
AV_LOG_INFO
,
" (%s -> %s)"
,
input_streams
[
ost
->
source_index
]
->
dec
?
input_streams
[
ost
->
source_index
]
->
dec
->
name
:
"?"
,
ost
->
enc
?
ost
->
enc
->
name
:
"?"
);
else
{
const
AVCodec
*
in_codec
=
input_streams
[
ost
->
source_index
]
->
dec
;
const
AVCodec
*
out_codec
=
ost
->
enc
;
const
char
*
decoder_name
=
"?"
;
const
char
*
in_codec_name
=
"?"
;
const
char
*
encoder_name
=
"?"
;
const
char
*
out_codec_name
=
"?"
;
if
(
in_codec
)
{
decoder_name
=
in_codec
->
name
;
in_codec_name
=
avcodec_descriptor_get
(
in_codec
->
id
)
->
name
;
if
(
!
strcmp
(
decoder_name
,
in_codec_name
))
decoder_name
=
"native"
;
}
if
(
out_codec
)
{
encoder_name
=
out_codec
->
name
;
out_codec_name
=
avcodec_descriptor_get
(
out_codec
->
id
)
->
name
;
if
(
!
strcmp
(
encoder_name
,
in_codec_name
))
encoder_name
=
"native"
;
}
av_log
(
NULL
,
AV_LOG_INFO
,
" (%s (%s) -> %s (%s))"
,
in_codec_name
,
decoder_name
,
out_codec_name
,
encoder_name
);
}
av_log
(
NULL
,
AV_LOG_INFO
,
"
\n
"
);
}
...
...
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