mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-23 15:53:08 +00:00
examples/avio_list_dir: init/deinit network
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
This commit is contained in:
parent
a66dcfeedc
commit
f79cd98caf
@ -74,17 +74,18 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
/* register codecs and formats and other lavf/lavc components*/
|
/* register codecs and formats and other lavf/lavc components*/
|
||||||
av_register_all();
|
av_register_all();
|
||||||
|
avformat_network_init();
|
||||||
|
|
||||||
if ((ret = avio_open_dir(&ctx, input_dir, NULL)) < 0) {
|
if ((ret = avio_open_dir(&ctx, input_dir, NULL)) < 0) {
|
||||||
av_log(NULL, AV_LOG_ERROR, "Cannot open directory: %s.\n", av_err2str(ret));
|
av_log(NULL, AV_LOG_ERROR, "Cannot open directory: %s.\n", av_err2str(ret));
|
||||||
return 1;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
cnt = 0;
|
cnt = 0;
|
||||||
for (;;) {
|
for (;;) {
|
||||||
if ((ret = avio_read_dir(ctx, &entry)) < 0) {
|
if ((ret = avio_read_dir(ctx, &entry)) < 0) {
|
||||||
av_log(NULL, AV_LOG_ERROR, "Cannot list directory: %s.\n", av_err2str(ret));
|
av_log(NULL, AV_LOG_ERROR, "Cannot list directory: %s.\n", av_err2str(ret));
|
||||||
return 1;
|
goto fail;
|
||||||
}
|
}
|
||||||
if (!entry)
|
if (!entry)
|
||||||
break;
|
break;
|
||||||
@ -111,7 +112,9 @@ int main(int argc, char *argv[])
|
|||||||
cnt++;
|
cnt++;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fail:
|
||||||
avio_close_dir(&ctx);
|
avio_close_dir(&ctx);
|
||||||
|
avformat_network_deinit();
|
||||||
|
|
||||||
return 0;
|
return ret < 0 ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user