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
b0094722
Commit
b0094722
authored
Apr 07, 2007
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove useless debuging av_log()
Originally committed as revision 8666 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
dc338d17
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
bethsoftvideo.c
libavcodec/bethsoftvideo.c
+0
-4
No files found.
libavcodec/bethsoftvideo.c
View file @
b0094722
...
...
@@ -43,7 +43,6 @@ static int bethsoftvid_decode_init(AVCodecContext *avctx)
vid
->
frame
.
buffer_hints
=
FF_BUFFER_HINTS_VALID
|
FF_BUFFER_HINTS_PRESERVE
|
FF_BUFFER_HINTS_REUSABLE
;
avctx
->
pix_fmt
=
PIX_FMT_PAL8
;
// palette in vid->frame.data[1]
av_log
(
avctx
,
AV_LOG_DEBUG
,
"[bethsoftvid video decoder] init
\n
"
);
return
0
;
}
...
...
@@ -70,8 +69,6 @@ static int bethsoftvid_decode_frame(AVCodecContext *avctx,
uint8_t
rle_num_bytes
;
int
yoffset
;
av_log
(
avctx
,
AV_LOG_DEBUG
,
"[bethsoftvid video decoder] decoding frame
\n
"
);
// reget buffer will copy old data, good for simple difference frames
if
(
avctx
->
reget_buffer
(
avctx
,
&
vid
->
frame
))
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"reget_buffer() failed
\n
"
);
...
...
@@ -127,7 +124,6 @@ static int bethsoftvid_decode_frame(AVCodecContext *avctx,
static
int
bethsoftvid_decode_end
(
AVCodecContext
*
avctx
)
{
BethsoftvidContext
*
vid
=
avctx
->
priv_data
;
av_log
(
avctx
,
AV_LOG_DEBUG
,
"[bethsoftvid video decoder] closing
\n
"
);
if
(
vid
->
frame
.
data
[
0
])
avctx
->
release_buffer
(
avctx
,
&
vid
->
frame
);
return
0
;
...
...
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