Am 19.04.19 um 14:35 schrieb Paul B Mahol:
>>> You do not need to use loop filter on single png.
>> I need real pictures to prove the correctness of my hacking. The
>> smptebars is not appopriate to see errors in the output e.g. from mirroring.
>>
>>> Use something like this:
>>>
>>> ffmpeg -f lav
Am 19.04.19 um 14:35 schrieb Paul B Mahol:
>>> You do not need to use loop filter on single png.
>> I need real pictures to prove the correctness of my hacking. The
>> smptebars is not appopriate to see errors in the output e.g. from mirroring.
>>
>>> Use something like this:
>>>
>>> ffmpeg -f lav
2019-04-19 14:25 GMT+02:00, Ulf Zibis :
>
> Am 19.04.19 um 13:38 schrieb Paul B Mahol:
>>
>> Use either av_freep(&s->filler) or av_free(s->filler).
>
> It works fine without 'p'.
Please use av_freep() for context variables.
Carl Eugen
___
ffmpeg-devel m
On 4/19/19, Ulf Zibis wrote:
>
> Am 19.04.19 um 14:35 schrieb Paul B Mahol:
>>> Do I really need the init function, as it has to do nothing in my case?
>> If it does nothing, you can safely remove it.
>
> Thanks!
>
>>> For performance testing I use the like:
>>> -f rawvideo -pix_fmt gray16 -s 400x
Am 19.04.19 um 14:35 schrieb Paul B Mahol:
>> Do I really need the init function, as it has to do nothing in my case?
> If it does nothing, you can safely remove it.
Thanks!
>> For performance testing I use the like:
>> -f rawvideo -pix_fmt gray16 -s 400x600 -i /dev/zero
>>
>> Are there doubts i
On 4/19/19, Ulf Zibis wrote:
>
> Am 19.04.19 um 13:38 schrieb Paul B Mahol:
>>
>> Use either av_freep(&s->filler) or av_free(s->filler).
>
> It works fine without 'p'. Thanks!
>
> Do I really need the init function, as it has to do nothing in my case?
If it does nothing, you can safely remove it.
Am 19.04.19 um 13:38 schrieb Paul B Mahol:
>
> Use either av_freep(&s->filler) or av_free(s->filler).
It works fine without 'p'. Thanks!
Do I really need the init function, as it has to do nothing in my case?
static av_cold int init(AVFilterContext *ctx)
{
FillBordersContext *s = ctx->priv;
On 4/19/19, Ulf Zibis wrote:
> Hi,
>
> to libavfilter/vf_fillborders.c I've added the following:
> ===
> typedef struct FillBordersContext {
> [.]
> uint16_t *filler;
>
> void (*fillborders)(struct FillBordersContext *s, AVFrame *fram
Hi,
to libavfilter/vf_fillborders.c I've added the following:
===
typedef struct FillBordersContext {
[.]
uint16_t *filler;
void (*fillborders)(struct FillBordersContext *s, AVFrame *frame);
} FillBordersContext;
// following must b