summaryrefslogtreecommitdiff
path: root/libavformat/riffdec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-08-09 10:36:21 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-08-30 20:00:55 +0200
commita94a6617a3e9924e093ae9be54bc639fba6a4cde (patch)
treee32ccc5a68cf8cb679afe839755d570f2f19404e /libavformat/riffdec.c
parent6a15b4d16c21eb12e7d126a962e2ee848fcc3bb1 (diff)
avformat/riffdec: Pass logctx as void* instead of AVFormatContext*
Also stop second-guessing error codes from ff_get_extradata(). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/riffdec.c')
-rw-r--r--libavformat/riffdec.c26
1 files changed, 14 insertions, 12 deletions
diff --git a/libavformat/riffdec.c b/libavformat/riffdec.c
index 1c149388ab..0fe4e02b7b 100644
--- a/libavformat/riffdec.c
+++ b/libavformat/riffdec.c
@@ -58,7 +58,7 @@ enum AVCodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid)
* an openended structure.
*/
-static void parse_waveformatex(AVFormatContext *s, AVIOContext *pb, AVCodecParameters *par)
+static void parse_waveformatex(void *logctx, AVIOContext *pb, AVCodecParameters *par)
{
ff_asf_guid subformat;
int bps;
@@ -84,21 +84,21 @@ static void parse_waveformatex(AVFormatContext *s, AVIOContext *pb, AVCodecParam
} else {
par->codec_id = ff_codec_guid_get_id(ff_codec_wav_guids, subformat);
if (!par->codec_id)
- av_log(s, AV_LOG_WARNING,
+ av_log(logctx, AV_LOG_WARNING,
"unknown subformat:"FF_PRI_GUID"\n",
FF_ARG_GUID(subformat));
}
}
/* "big_endian" values are needed for RIFX file format */
-int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb,
+int ff_get_wav_header(void *logctx, AVIOContext *pb,
AVCodecParameters *par, int size, int big_endian)
{
- int id, channels = 0;
+ int id, channels = 0, ret;
uint64_t bitrate = 0;
if (size < 14) {
- avpriv_request_sample(s, "wav header size < 14");
+ avpriv_request_sample(logctx, "wav header size < 14");
return AVERROR_INVALIDDATA;
}
@@ -139,19 +139,20 @@ int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb,
if (size >= 18 && id != 0x0165) { /* We're obviously dealing with WAVEFORMATEX */
int cbSize = avio_rl16(pb); /* cbSize */
if (big_endian) {
- avpriv_report_missing_feature(s, "WAVEFORMATEX support for RIFX files");
+ avpriv_report_missing_feature(logctx, "WAVEFORMATEX support for RIFX files");
return AVERROR_PATCHWELCOME;
}
size -= 18;
cbSize = FFMIN(size, cbSize);
if (cbSize >= 22 && id == 0xfffe) { /* WAVEFORMATEXTENSIBLE */
- parse_waveformatex(s, pb, par);
+ parse_waveformatex(logctx, pb, par);
cbSize -= 22;
size -= 22;
}
if (cbSize > 0) {
- if (ff_get_extradata(s, par, pb, cbSize) < 0)
- return AVERROR(ENOMEM);
+ ret = ff_get_extradata(logctx, par, pb, cbSize);
+ if (ret < 0)
+ return ret;
size -= cbSize;
}
@@ -162,8 +163,9 @@ int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb,
int nb_streams, i;
size -= 4;
- if (ff_get_extradata(s, par, pb, size) < 0)
- return AVERROR(ENOMEM);
+ ret = ff_get_extradata(logctx, par, pb, size);
+ if (ret < 0)
+ return ret;
nb_streams = AV_RL16(par->extradata + 4);
par->sample_rate = AV_RL32(par->extradata + 12);
channels = 0;
@@ -177,7 +179,7 @@ int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb,
par->bit_rate = bitrate;
if (par->sample_rate <= 0) {
- av_log(s, AV_LOG_ERROR,
+ av_log(logctx, AV_LOG_ERROR,
"Invalid sample rate: %d\n", par->sample_rate);
return AVERROR_INVALIDDATA;
}