mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-15 19:40:07 +01:00
Merge commit '67deba8a416d818f3d95aef0aa916589090396e2'
* commit '67deba8a416d818f3d95aef0aa916589090396e2': Use avpriv_report_missing_feature() where appropriate Merged-by: Clément Bœsch <cboesch@gopro.com>
This commit is contained in:
@@ -108,15 +108,14 @@ static int xiph_handle_packet(AVFormatContext *ctx, PayloadContext *data,
|
||||
}
|
||||
|
||||
if (ident != data->ident) {
|
||||
av_log(ctx, AV_LOG_ERROR,
|
||||
"Unimplemented Xiph SDP configuration change detected\n");
|
||||
avpriv_report_missing_feature(ctx, "Xiph SDP configuration change");
|
||||
return AVERROR_PATCHWELCOME;
|
||||
}
|
||||
|
||||
if (tdt) {
|
||||
av_log(ctx, AV_LOG_ERROR,
|
||||
"Unimplemented RTP Xiph packet settings (%d,%d,%d)\n",
|
||||
fragmented, tdt, num_pkts);
|
||||
avpriv_report_missing_feature(ctx,
|
||||
"RTP Xiph packet settings (%d,%d,%d)",
|
||||
fragmented, tdt, num_pkts);
|
||||
return AVERROR_PATCHWELCOME;
|
||||
}
|
||||
|
||||
@@ -246,9 +245,8 @@ parse_packed_headers(AVFormatContext *s,
|
||||
length2 = get_base128(&packed_headers, packed_headers_end);
|
||||
|
||||
if (num_packed != 1 || num_headers > 3) {
|
||||
av_log(s, AV_LOG_ERROR,
|
||||
"Unimplemented number of headers: %u packed headers, %u headers\n",
|
||||
num_packed, num_headers);
|
||||
avpriv_report_missing_feature(s, "%u packed headers, %u headers",
|
||||
num_packed, num_headers);
|
||||
return AVERROR_PATCHWELCOME;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user