mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-13 10:30:05 +01:00
avformat: Forward errors where possible
It is not uncommon to find code where the caller thinks to know better what the return value should be than the callee. E.g. something like "if (av_new_packet(pkt, size) < 0) return AVERROR(ENOMEM);". This commit changes several instances of this to instead forward the actual error. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
committed by
Michael Niedermayer
parent
cb88cdf773
commit
c1e439d7e9
@@ -5451,7 +5451,7 @@ int ff_generate_avci_extradata(AVStream *st)
|
||||
};
|
||||
|
||||
const uint8_t *data = NULL;
|
||||
int size = 0;
|
||||
int ret, size = 0;
|
||||
|
||||
if (st->codecpar->width == 1920) {
|
||||
if (st->codecpar->field_order == AV_FIELD_PROGRESSIVE) {
|
||||
@@ -5481,8 +5481,8 @@ int ff_generate_avci_extradata(AVStream *st)
|
||||
return 0;
|
||||
|
||||
av_freep(&st->codecpar->extradata);
|
||||
if (ff_alloc_extradata(st->codecpar, size))
|
||||
return AVERROR(ENOMEM);
|
||||
if ((ret = ff_alloc_extradata(st->codecpar, size)) < 0)
|
||||
return ret;
|
||||
memcpy(st->codecpar->extradata, data, size);
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user