mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-12-01 07:20:58 +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*/
|
||||
av_register_all();
|
||||
avformat_network_init();
|
||||
|
||||
if ((ret = avio_open_dir(&ctx, input_dir, NULL)) < 0) {
|
||||
av_log(NULL, AV_LOG_ERROR, "Cannot open directory: %s.\n", av_err2str(ret));
|
||||
return 1;
|
||||
goto fail;
|
||||
}
|
||||
|
||||
cnt = 0;
|
||||
for (;;) {
|
||||
if ((ret = avio_read_dir(ctx, &entry)) < 0) {
|
||||
av_log(NULL, AV_LOG_ERROR, "Cannot list directory: %s.\n", av_err2str(ret));
|
||||
return 1;
|
||||
goto fail;
|
||||
}
|
||||
if (!entry)
|
||||
break;
|
||||
@ -111,7 +112,9 @@ int main(int argc, char *argv[])
|
||||
cnt++;
|
||||
};
|
||||
|
||||
fail:
|
||||
avio_close_dir(&ctx);
|
||||
avformat_network_deinit();
|
||||
|
||||
return 0;
|
||||
return ret < 0 ? 1 : 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user