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
248b1ff2
Commit
248b1ff2
authored
Oct 21, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix various uses of av_log_missing_feature()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
8f37a1e8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
aacsbr.c
libavcodec/aacsbr.c
+1
-1
wmavoice.c
libavcodec/wmavoice.c
+1
-1
oggdec.c
libavformat/oggdec.c
+1
-1
spdifdec.c
libavformat/spdifdec.c
+1
-1
No files found.
libavcodec/aacsbr.c
View file @
248b1ff2
...
@@ -926,7 +926,7 @@ static void read_sbr_extension(AACContext *ac, SpectralBandReplication *sbr,
...
@@ -926,7 +926,7 @@ static void read_sbr_extension(AACContext *ac, SpectralBandReplication *sbr,
#if 1
#if 1
*
num_bits_left
-=
ff_ps_read_data
(
ac
->
avctx
,
gb
,
&
sbr
->
ps
,
*
num_bits_left
);
*
num_bits_left
-=
ff_ps_read_data
(
ac
->
avctx
,
gb
,
&
sbr
->
ps
,
*
num_bits_left
);
#else
#else
av_log_missing_feature
(
ac
->
avctx
,
"Parametric Stereo
is
"
,
0
);
av_log_missing_feature
(
ac
->
avctx
,
"Parametric Stereo"
,
0
);
skip_bits_long
(
gb
,
*
num_bits_left
);
// bs_fill_bits
skip_bits_long
(
gb
,
*
num_bits_left
);
// bs_fill_bits
*
num_bits_left
=
0
;
*
num_bits_left
=
0
;
#endif
#endif
...
...
libavcodec/wmavoice.c
View file @
248b1ff2
...
@@ -1762,7 +1762,7 @@ static int synth_superframe(AVCodecContext *ctx, int *got_frame_ptr)
...
@@ -1762,7 +1762,7 @@ static int synth_superframe(AVCodecContext *ctx, int *got_frame_ptr)
* are really WMAPro-in-WMAVoice-superframes. I've never seen those in
* are really WMAPro-in-WMAVoice-superframes. I've never seen those in
* the wild yet. */
* the wild yet. */
if
(
!
get_bits1
(
gb
))
{
if
(
!
get_bits1
(
gb
))
{
av_log_missing_feature
(
ctx
,
"WMAPro-in-WMAVoice
support
"
,
1
);
av_log_missing_feature
(
ctx
,
"WMAPro-in-WMAVoice"
,
1
);
return
AVERROR_PATCHWELCOME
;
return
AVERROR_PATCHWELCOME
;
}
}
...
...
libavformat/oggdec.c
View file @
248b1ff2
...
@@ -175,7 +175,7 @@ static int ogg_replace_stream(AVFormatContext *s, uint32_t serial)
...
@@ -175,7 +175,7 @@ static int ogg_replace_stream(AVFormatContext *s, uint32_t serial)
uint8_t
*
buf
;
uint8_t
*
buf
;
if
(
ogg
->
nstreams
!=
1
)
{
if
(
ogg
->
nstreams
!=
1
)
{
av_log_missing_feature
(
s
,
"Changing stream parameters in multistream ogg
is
"
,
0
);
av_log_missing_feature
(
s
,
"Changing stream parameters in multistream ogg"
,
0
);
return
AVERROR_PATCHWELCOME
;
return
AVERROR_PATCHWELCOME
;
}
}
...
...
libavformat/spdifdec.c
View file @
248b1ff2
...
@@ -92,7 +92,7 @@ static int spdif_get_offset_and_codec(AVFormatContext *s,
...
@@ -92,7 +92,7 @@ static int spdif_get_offset_and_codec(AVFormatContext *s,
default:
default:
if
(
s
)
{
/* be silent during a probe */
if
(
s
)
{
/* be silent during a probe */
av_log
(
s
,
AV_LOG_WARNING
,
"Data type 0x%04x"
,
data_type
);
av_log
(
s
,
AV_LOG_WARNING
,
"Data type 0x%04x"
,
data_type
);
av_log_missing_feature
(
s
,
" in IEC 61937
is
"
,
1
);
av_log_missing_feature
(
s
,
" in IEC 61937"
,
1
);
}
}
return
AVERROR_PATCHWELCOME
;
return
AVERROR_PATCHWELCOME
;
}
}
...
...
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