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
35a68558
Commit
35a68558
authored
Sep 13, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix av_dlog invocations with wrong or missing logging context.
This fixes build failures with -DDEBUG in CPPFLAGS.
parent
be4e8908
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
flashsvenc.c
libavcodec/flashsvenc.c
+1
-1
mpegts.c
libavformat/mpegts.c
+1
-1
No files found.
libavcodec/flashsvenc.c
View file @
35a68558
...
...
@@ -176,7 +176,7 @@ static int encode_bitstream(FlashSVContext *s, AVFrame *p, uint8_t *buf,
bytestream_put_be16
(
&
ptr
,
zsize
);
buf_pos
+=
zsize
+
2
;
av_dlog
(
avctx
,
"buf_pos = %d
\n
"
,
buf_pos
);
av_dlog
(
s
->
avctx
,
"buf_pos = %d
\n
"
,
buf_pos
);
}
else
{
pred_blocks
++
;
bytestream_put_be16
(
&
ptr
,
0
);
...
...
libavformat/mpegts.c
View file @
35a68558
...
...
@@ -1409,7 +1409,7 @@ static int handle_packets(MpegTSContext *ts, int nb_packets)
if
(
avio_tell
(
s
->
pb
)
!=
ts
->
last_pos
)
{
int
i
;
av_dlog
(
"Skipping after seek
\n
"
);
av_dlog
(
ts
->
stream
,
"Skipping after seek
\n
"
);
/* seek detected, flush pes buffer */
for
(
i
=
0
;
i
<
NB_PID_MAX
;
i
++
)
{
if
(
ts
->
pids
[
i
])
{
...
...
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