Lines Matching defs:err
62 int err;
92 err = avformat_open_input(&fctx, argv[1], NULL, NULL);
93 if (err < 0) {
94 fprintf(stderr, "cannot open input: error %d\n", err);
98 err = avformat_find_stream_info(fctx, NULL);
99 if (err < 0) {
100 fprintf(stderr, "avformat_find_stream_info: error %d\n", err);
110 while ((err = av_read_frame(fctx, pkt)) >= 0) {
119 err = write(fd, pkt->data, pkt->size);
120 if (err < 0) {
121 fprintf(stderr, "write: error %d\n", err);