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
53241b5d
Commit
53241b5d
authored
Sep 01, 2012
by
Piotr Bandurski
Committed by
Michael Niedermayer
Sep 01, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: add missing new line to some messages
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
08277a45
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
4xm.c
libavcodec/4xm.c
+1
-1
alac.c
libavcodec/alac.c
+1
-1
dirac.c
libavcodec/dirac.c
+2
-2
libopenjpegenc.c
libavcodec/libopenjpegenc.c
+1
-1
libspeexdec.c
libavcodec/libspeexdec.c
+1
-1
mlpdec.c
libavcodec/mlpdec.c
+1
-1
rv34.c
libavcodec/rv34.c
+1
-1
No files found.
libavcodec/4xm.c
View file @
53241b5d
...
...
@@ -836,7 +836,7 @@ static int decode_frame(AVCodecContext *avctx, void *data,
cfrm
->
size
+
data_size
+
FF_INPUT_BUFFER_PADDING_SIZE
);
// explicit check needed as memcpy below might not catch a NULL
if
(
!
cfrm
->
data
)
{
av_log
(
f
->
avctx
,
AV_LOG_ERROR
,
"realloc falure"
);
av_log
(
f
->
avctx
,
AV_LOG_ERROR
,
"realloc falure
\n
"
);
return
-
1
;
}
...
...
libavcodec/alac.c
View file @
53241b5d
...
...
@@ -490,7 +490,7 @@ static int alac_decode_frame(AVCodecContext *avctx, void *data,
break
;
}
if
(
element
>
TYPE_CPE
&&
element
!=
TYPE_LFE
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"syntax element unsupported: %d"
,
element
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"syntax element unsupported: %d
\n
"
,
element
);
return
AVERROR_PATCHWELCOME
;
}
...
...
libavcodec/dirac.c
View file @
53241b5d
...
...
@@ -232,7 +232,7 @@ static int parse_source_parameters(AVCodecContext *avctx, GetBitContext *gb,
}
if
(
luma_depth
>
8
)
av_log
(
avctx
,
AV_LOG_WARNING
,
"Bitdepth greater than 8"
);
av_log
(
avctx
,
AV_LOG_WARNING
,
"Bitdepth greater than 8
\n
"
);
avctx
->
pix_fmt
=
dirac_pix_fmt
[
!
luma_offset
][
source
->
chroma_format
];
...
...
@@ -319,7 +319,7 @@ int avpriv_dirac_parse_sequence_header(AVCodecContext *avctx, GetBitContext *gb,
* currently only used to signal field coding */
picture_coding_mode
=
svq3_get_ue_golomb
(
gb
);
if
(
picture_coding_mode
!=
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unsupported picture coding mode %d"
,
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unsupported picture coding mode %d
\n
"
,
picture_coding_mode
);
return
AVERROR_INVALIDDATA
;
}
...
...
libavcodec/libopenjpegenc.c
View file @
53241b5d
...
...
@@ -131,7 +131,7 @@ static opj_image_t *mj2_create_image(AVCodecContext *avctx, opj_cparameters_t *p
cmptparm
=
av_mallocz
(
numcomps
*
sizeof
(
*
cmptparm
));
if
(
!
cmptparm
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Not enough memory"
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Not enough memory
\n
"
);
return
NULL
;
}
for
(
i
=
0
;
i
<
numcomps
;
i
++
)
{
...
...
libavcodec/libspeexdec.c
View file @
53241b5d
...
...
@@ -59,7 +59,7 @@ static av_cold int libspeex_decode_init(AVCodecContext *avctx)
mode
=
speex_lib_get_mode
(
s
->
header
->
mode
);
if
(
!
mode
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unknown Speex mode %d"
,
s
->
header
->
mode
);
av_log
(
avctx
,
AV_LOG_ERROR
,
"Unknown Speex mode %d
\n
"
,
s
->
header
->
mode
);
return
AVERROR_INVALIDDATA
;
}
}
else
...
...
libavcodec/mlpdec.c
View file @
53241b5d
...
...
@@ -736,7 +736,7 @@ static int read_decoding_params(MLPDecodeContext *m, GetBitContext *gbp,
if
(
get_bits1
(
gbp
))
{
s
->
blocksize
=
get_bits
(
gbp
,
9
);
if
(
s
->
blocksize
<
8
||
s
->
blocksize
>
m
->
access_unit_size
)
{
av_log
(
m
->
avctx
,
AV_LOG_ERROR
,
"Invalid blocksize."
);
av_log
(
m
->
avctx
,
AV_LOG_ERROR
,
"Invalid blocksize.
\n
"
);
s
->
blocksize
=
0
;
return
AVERROR_INVALIDDATA
;
}
...
...
libavcodec/rv34.c
View file @
53241b5d
...
...
@@ -1650,7 +1650,7 @@ int ff_rv34_decode_frame(AVCodecContext *avctx,
/* first slice */
if
(
si
.
start
==
0
)
{
if
(
s
->
mb_num_left
>
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"New frame but still %d MB left."
,
av_log
(
avctx
,
AV_LOG_ERROR
,
"New frame but still %d MB left.
\n
"
,
s
->
mb_num_left
);
ff_er_frame_end
(
s
);
ff_MPV_frame_end
(
s
);
...
...
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