Searched refs:zret (Results 1 - 21 of 21) sorted by relevance

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavcodec/
H A Dlclenc.c76 int zret; // Zlib return code local
87 zret = deflateReset(&c->zstream);
88 if (zret != Z_OK) {
89 av_log(avctx, AV_LOG_ERROR, "Deflate reset error: %d\n", zret);
98 zret = deflate(&c->zstream, Z_NO_FLUSH);
99 if (zret != Z_OK) {
100 av_log(avctx, AV_LOG_ERROR, "Deflate error: %d\n", zret);
104 zret = deflate(&c->zstream, Z_FINISH);
105 if (zret != Z_STREAM_END) {
106 av_log(avctx, AV_LOG_ERROR, "Deflate error: %d\n", zret);
121 int zret; // Zlib return code local
[all...]
H A Dtscc.c77 int zret; // Zlib return code local
92 zret = inflateReset(&(c->zstream));
93 if (zret != Z_OK) {
94 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
101 zret = inflate(&(c->zstream), Z_FINISH);
103 if ((zret != Z_OK) && (zret != Z_STREAM_END) && (zret != Z_DATA_ERROR)) {
104 av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret);
109 if(zret !
138 int zret; // Zlib return code local
[all...]
H A Dlcldec.c131 int zret = inflateReset(&c->zstream); local
132 if (zret != Z_OK) {
133 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
140 zret = inflate(&c->zstream, Z_FINISH);
141 if (zret != Z_OK && zret != Z_STREAM_END) {
142 av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret);
575 int zret; local
579 zret = inflateInit(&c->zstream);
580 if (zret !
[all...]
H A Dflashsv.c85 int zret; // Zlib return code local
91 zret = inflateInit(&(s->zstream));
92 if (zret != Z_OK) {
93 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
H A Dtiff.c83 int zret; local
90 zret = inflateInit(&zstream);
91 if (zret != Z_OK) {
92 av_log(NULL, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
93 return zret;
95 zret = inflate(&zstream, Z_SYNC_FLUSH);
98 return zret == Z_STREAM_END ? Z_OK : zret;
H A Dzmbvenc.c249 int zret; // Zlib return code local
297 zret = deflateInit(&(c->zstream), lvl);
298 if (zret != Z_OK) {
299 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
H A Dzmbv.c401 int zret = Z_OK; // Zlib return code local
475 zret = inflateReset(&c->zstream);
476 if (zret != Z_OK) {
477 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
599 int zret; // Zlib return code local
625 zret = inflateInit(&(c->zstream));
626 if (zret != Z_OK) {
627 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavcodec/
H A Dlclenc.c76 int zret; // Zlib return code local
87 zret = deflateReset(&c->zstream);
88 if (zret != Z_OK) {
89 av_log(avctx, AV_LOG_ERROR, "Deflate reset error: %d\n", zret);
98 zret = deflate(&c->zstream, Z_NO_FLUSH);
99 if (zret != Z_OK) {
100 av_log(avctx, AV_LOG_ERROR, "Deflate error: %d\n", zret);
104 zret = deflate(&c->zstream, Z_FINISH);
105 if (zret != Z_STREAM_END) {
106 av_log(avctx, AV_LOG_ERROR, "Deflate error: %d\n", zret);
121 int zret; // Zlib return code local
[all...]
H A Dtscc.c77 int zret; // Zlib return code local
92 zret = inflateReset(&(c->zstream));
93 if (zret != Z_OK) {
94 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
101 zret = inflate(&(c->zstream), Z_FINISH);
103 if ((zret != Z_OK) && (zret != Z_STREAM_END) && (zret != Z_DATA_ERROR)) {
104 av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret);
109 if(zret !
138 int zret; // Zlib return code local
[all...]
H A Dlcldec.c131 int zret = inflateReset(&c->zstream); local
132 if (zret != Z_OK) {
133 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
140 zret = inflate(&c->zstream, Z_FINISH);
141 if (zret != Z_OK && zret != Z_STREAM_END) {
142 av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret);
575 int zret; local
579 zret = inflateInit(&c->zstream);
580 if (zret !
[all...]
H A Dflashsv.c85 int zret; // Zlib return code local
91 zret = inflateInit(&(s->zstream));
92 if (zret != Z_OK) {
93 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
H A Dtiff.c83 int zret; local
90 zret = inflateInit(&zstream);
91 if (zret != Z_OK) {
92 av_log(NULL, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
93 return zret;
95 zret = inflate(&zstream, Z_SYNC_FLUSH);
98 return zret == Z_STREAM_END ? Z_OK : zret;
H A Dzmbvenc.c249 int zret; // Zlib return code local
297 zret = deflateInit(&(c->zstream), lvl);
298 if (zret != Z_OK) {
299 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
H A Dzmbv.c401 int zret = Z_OK; // Zlib return code local
475 zret = inflateReset(&c->zstream);
476 if (zret != Z_OK) {
477 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
599 int zret; // Zlib return code local
625 zret = inflateInit(&(c->zstream));
626 if (zret != Z_OK) {
627 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/libavcodec/
H A Dlclenc.c76 int zret; // Zlib return code local
87 zret = deflateReset(&c->zstream);
88 if (zret != Z_OK) {
89 av_log(avctx, AV_LOG_ERROR, "Deflate reset error: %d\n", zret);
98 zret = deflate(&c->zstream, Z_NO_FLUSH);
99 if (zret != Z_OK) {
100 av_log(avctx, AV_LOG_ERROR, "Deflate error: %d\n", zret);
104 zret = deflate(&c->zstream, Z_FINISH);
105 if (zret != Z_STREAM_END) {
106 av_log(avctx, AV_LOG_ERROR, "Deflate error: %d\n", zret);
121 int zret; // Zlib return code local
[all...]
H A Dtscc.c77 int zret; // Zlib return code local
92 zret = inflateReset(&(c->zstream));
93 if (zret != Z_OK) {
94 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
101 zret = inflate(&(c->zstream), Z_FINISH);
103 if ((zret != Z_OK) && (zret != Z_STREAM_END) && (zret != Z_DATA_ERROR)) {
104 av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret);
109 if(zret !
138 int zret; // Zlib return code local
[all...]
H A Dlcldec.c131 int zret = inflateReset(&c->zstream); local
132 if (zret != Z_OK) {
133 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
140 zret = inflate(&c->zstream, Z_FINISH);
141 if (zret != Z_OK && zret != Z_STREAM_END) {
142 av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret);
575 int zret; local
579 zret = inflateInit(&c->zstream);
580 if (zret !
[all...]
H A Dflashsv.c85 int zret; // Zlib return code local
91 zret = inflateInit(&(s->zstream));
92 if (zret != Z_OK) {
93 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
H A Dtiff.c83 int zret; local
90 zret = inflateInit(&zstream);
91 if (zret != Z_OK) {
92 av_log(NULL, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
93 return zret;
95 zret = inflate(&zstream, Z_SYNC_FLUSH);
98 return zret == Z_STREAM_END ? Z_OK : zret;
H A Dzmbvenc.c249 int zret; // Zlib return code local
297 zret = deflateInit(&(c->zstream), lvl);
298 if (zret != Z_OK) {
299 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
H A Dzmbv.c401 int zret = Z_OK; // Zlib return code local
475 zret = inflateReset(&c->zstream);
476 if (zret != Z_OK) {
477 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
599 int zret; // Zlib return code local
625 zret = inflateInit(&(c->zstream));
626 if (zret != Z_OK) {
627 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);

Completed in 223 milliseconds