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
e9391ab1
Commit
e9391ab1
authored
Jun 14, 2016
by
Aman Gupta
Committed by
Michael Niedermayer
Jun 14, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/mpegts: enhance logging in trace mode
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
fa0097e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mpegts.c
libavformat/mpegts.c
+3
-3
No files found.
libavformat/mpegts.c
View file @
e9391ab1
...
...
@@ -446,7 +446,7 @@ static MpegTSFilter *mpegts_open_filter(MpegTSContext *ts, unsigned int pid,
{
MpegTSFilter
*
filter
;
av_log
(
ts
->
stream
,
AV_LOG_TRACE
,
"Filter: pid=0x%x
\n
"
,
pid
);
av_log
(
ts
->
stream
,
AV_LOG_TRACE
,
"Filter: pid=0x%x
type=%d
\n
"
,
pid
,
type
);
if
(
pid
>=
NB_PID_MAX
||
ts
->
pids
[
pid
])
return
NULL
;
...
...
@@ -1890,8 +1890,8 @@ static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len
if
(
skip_identical
(
h
,
tssf
))
return
;
av_log
(
ts
->
stream
,
AV_LOG_TRACE
,
"sid=0x%x sec_num=%d/%d version=%d
\n
"
,
h
->
id
,
h
->
sec_num
,
h
->
last_sec_num
,
h
->
version
);
av_log
(
ts
->
stream
,
AV_LOG_TRACE
,
"sid=0x%x sec_num=%d/%d version=%d
tid=%d
\n
"
,
h
->
id
,
h
->
sec_num
,
h
->
last_sec_num
,
h
->
version
,
h
->
tid
);
if
(
h
->
tid
!=
PMT_TID
)
return
;
...
...
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