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
d7cf5639
Commit
d7cf5639
authored
Jun 05, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace some printf instances in debug code by av_log.
parent
e01bb264
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
avidec.c
libavformat/avidec.c
+2
-2
mpeg.c
libavformat/mpeg.c
+3
-2
No files found.
libavformat/avidec.c
View file @
d7cf5639
...
...
@@ -1206,7 +1206,7 @@ static int avi_load_index(AVFormatContext *s)
if
(
avio_seek
(
pb
,
avi
->
movi_end
,
SEEK_SET
)
<
0
)
goto
the_end
;
// maybe truncated file
#ifdef DEBUG_SEEK
printf
(
"movi_end=0x%"
PRIx64
"
\n
"
,
avi
->
movi_end
);
av_log
(
s
,
AV_LOG_DEBUG
,
"movi_end=0x%"
PRIx64
"
\n
"
,
avi
->
movi_end
);
#endif
for
(;;)
{
if
(
pb
->
eof_reached
)
...
...
@@ -1214,7 +1214,7 @@ static int avi_load_index(AVFormatContext *s)
tag
=
avio_rl32
(
pb
);
size
=
avio_rl32
(
pb
);
#ifdef DEBUG_SEEK
printf
(
"tag=%c%c%c%c size=0x%x
\n
"
,
av_log
(
s
,
AV_LOG_DEBUG
,
"tag=%c%c%c%c size=0x%x
\n
"
,
tag
&
0xff
,
(
tag
>>
8
)
&
0xff
,
(
tag
>>
16
)
&
0xff
,
...
...
libavformat/mpeg.c
View file @
d7cf5639
...
...
@@ -593,7 +593,7 @@ static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index,
len
=
mpegps_read_pes_header
(
s
,
&
pos
,
&
startcode
,
&
pts
,
&
dts
);
if
(
len
<
0
)
{
#ifdef DEBUG_SEEK
printf
(
"none (ret=%d)
\n
"
,
len
);
av_log
(
s
,
AV_LOG_DEBUG
,
"none (ret=%d)
\n
"
,
len
);
#endif
return
AV_NOPTS_VALUE
;
}
...
...
@@ -604,7 +604,8 @@ static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index,
avio_skip
(
s
->
pb
,
len
);
}
#ifdef DEBUG_SEEK
printf
(
"pos=0x%"
PRIx64
" dts=0x%"
PRIx64
" %0.3f
\n
"
,
pos
,
dts
,
dts
/
90000
.
0
);
av_log
(
s
,
AV_LOG_DEBUG
,
"pos=0x%"
PRIx64
" dts=0x%"
PRIx64
" %0.3f
\n
"
,
pos
,
dts
,
dts
/
90000
.
0
);
#endif
*
ppos
=
pos
;
return
dts
;
...
...
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