tests: lavfi/drawutils: use av_err2str
There is no need to explicitly specify the buffer, as it is only ever passed to printf, so av_err2str can be used.
This commit is contained in:
parent
d7d103c34c
commit
b781f1836e
1 changed files with 1 additions and 3 deletions
|
|
@ -37,9 +37,7 @@ int main(void)
|
||||||
(int)(16 - strlen(desc->name)), "");
|
(int)(16 - strlen(desc->name)), "");
|
||||||
r = ff_draw_init(&draw, f, 0);
|
r = ff_draw_init(&draw, f, 0);
|
||||||
if (r < 0) {
|
if (r < 0) {
|
||||||
char buf[128];
|
printf("no: %s\n", av_err2str(r));
|
||||||
av_strerror(r, buf, sizeof(buf));
|
|
||||||
printf("no: %s\n", buf);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
ff_draw_color(&draw, &color, (uint8_t[]) { 1, 0, 0, 1 });
|
ff_draw_color(&draw, &color, (uint8_t[]) { 1, 0, 0, 1 });
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue