Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
69a68593
Commit
69a68593
authored
Dec 15, 2015
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove stray line breaks from avpriv_{report_missing_feature|request_samples}
parent
5049f6b7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
6 deletions
+5
-6
exr.c
libavcodec/exr.c
+1
-2
ivi.c
libavcodec/ivi.c
+1
-1
lxfdec.c
libavformat/lxfdec.c
+1
-1
rtpdec_hevc.c
libavformat/rtpdec_hevc.c
+2
-2
No files found.
libavcodec/exr.c
View file @
69a68593
...
@@ -1092,8 +1092,7 @@ static int decode_header(EXRContext *s)
...
@@ -1092,8 +1092,7 @@ static int decode_header(EXRContext *s)
current_pixel_type
=
bytestream2_get_le32
(
&
ch_gb
);
current_pixel_type
=
bytestream2_get_le32
(
&
ch_gb
);
if
(
current_pixel_type
>=
EXR_UNKNOWN
)
{
if
(
current_pixel_type
>=
EXR_UNKNOWN
)
{
avpriv_report_missing_feature
(
s
->
avctx
,
avpriv_report_missing_feature
(
s
->
avctx
,
"Pixel type %d"
,
"Pixel type %d.
\n
"
,
current_pixel_type
);
current_pixel_type
);
return
AVERROR_PATCHWELCOME
;
return
AVERROR_PATCHWELCOME
;
}
}
...
...
libavcodec/ivi.c
View file @
69a68593
...
@@ -1054,7 +1054,7 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
...
@@ -1054,7 +1054,7 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
}
}
if
(
ctx
->
gop_flags
&
IVI5_IS_PROTECTED
)
{
if
(
ctx
->
gop_flags
&
IVI5_IS_PROTECTED
)
{
avpriv_report_missing_feature
(
avctx
,
"Password-protected clip
!
\n
"
);
avpriv_report_missing_feature
(
avctx
,
"Password-protected clip"
);
return
AVERROR_PATCHWELCOME
;
return
AVERROR_PATCHWELCOME
;
}
}
...
...
libavformat/lxfdec.c
View file @
69a68593
...
@@ -130,7 +130,7 @@ static int get_packet_header(AVFormatContext *s)
...
@@ -130,7 +130,7 @@ static int get_packet_header(AVFormatContext *s)
version
=
bytestream_get_le32
(
&
p
);
version
=
bytestream_get_le32
(
&
p
);
header_size
=
bytestream_get_le32
(
&
p
);
header_size
=
bytestream_get_le32
(
&
p
);
if
(
version
>
1
)
if
(
version
>
1
)
avpriv_request_sample
(
s
,
"
Unknown format version %"
PRIu32
"
\n
"
,
version
);
avpriv_request_sample
(
s
,
"
Format version %"
PRIu32
,
version
);
if
(
header_size
<
(
version
?
72
:
60
)
||
if
(
header_size
<
(
version
?
72
:
60
)
||
header_size
>
LXF_MAX_PACKET_HEADER_SIZE
||
header_size
>
LXF_MAX_PACKET_HEADER_SIZE
||
...
...
libavformat/rtpdec_hevc.c
View file @
69a68593
...
@@ -218,7 +218,7 @@ static int hevc_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_hevc_ctx
...
@@ -218,7 +218,7 @@ static int hevc_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_hevc_ctx
/* sanity check for correct layer ID */
/* sanity check for correct layer ID */
if
(
lid
)
{
if
(
lid
)
{
/* future scalable or 3D video coding extensions */
/* future scalable or 3D video coding extensions */
avpriv_report_missing_feature
(
ctx
,
"Multi-layer HEVC coding
\n
"
);
avpriv_report_missing_feature
(
ctx
,
"Multi-layer HEVC coding"
);
return
AVERROR_PATCHWELCOME
;
return
AVERROR_PATCHWELCOME
;
}
}
...
@@ -330,7 +330,7 @@ static int hevc_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_hevc_ctx
...
@@ -330,7 +330,7 @@ static int hevc_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_hevc_ctx
/* PACI packet */
/* PACI packet */
case
50
:
case
50
:
/* Temporal scalability control information (TSCI) */
/* Temporal scalability control information (TSCI) */
avpriv_report_missing_feature
(
ctx
,
"PACI packets for RTP/HEVC
\n
"
);
avpriv_report_missing_feature
(
ctx
,
"PACI packets for RTP/HEVC"
);
res
=
AVERROR_PATCHWELCOME
;
res
=
AVERROR_PATCHWELCOME
;
break
;
break
;
}
}
...
...
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