examples: Don't call deprecated functions which don't do anything

pull/279/head
Mark Thompson 7 years ago
parent c69054fa24
commit 10bcc41bb4
  1. 2
      doc/examples/avio_dir_cmd.c
  2. 3
      doc/examples/avio_reading.c
  3. 3
      doc/examples/decode_audio.c
  4. 2
      doc/examples/decode_video.c
  5. 3
      doc/examples/demuxing_decoding.c
  6. 3
      doc/examples/encode_audio.c
  7. 2
      doc/examples/encode_video.c
  8. 2
      doc/examples/extract_mvs.c
  9. 1
      doc/examples/filtering_audio.c
  10. 1
      doc/examples/filtering_video.c
  11. 1
      doc/examples/http_multiclient.c
  12. 2
      doc/examples/hw_decode.c
  13. 1
      doc/examples/metadata.c
  14. 3
      doc/examples/muxing.c
  15. 2
      doc/examples/qsvdec.c
  16. 2
      doc/examples/remuxing.c
  17. 2
      doc/examples/transcode_aac.c
  18. 1
      doc/examples/transcoding.c
  19. 2
      doc/examples/vaapi_encode.c
  20. 2
      doc/examples/vaapi_transcode.c

@ -143,8 +143,6 @@ int main(int argc, char *argv[])
return 1; return 1;
} }
/* register codecs and formats and other lavf/lavc components*/
av_register_all();
avformat_network_init(); avformat_network_init();
op = argv[1]; op = argv[1];

@ -74,9 +74,6 @@ int main(int argc, char *argv[])
} }
input_filename = argv[1]; input_filename = argv[1];
/* register codecs and formats and other lavf/lavc components*/
av_register_all();
/* slurp file content into buffer */ /* slurp file content into buffer */
ret = av_file_map(input_filename, &buffer, &buffer_size, 0, NULL); ret = av_file_map(input_filename, &buffer, &buffer_size, 0, NULL);
if (ret < 0) if (ret < 0)

@ -94,9 +94,6 @@ int main(int argc, char **argv)
filename = argv[1]; filename = argv[1];
outfilename = argv[2]; outfilename = argv[2];
/* register all the codecs */
avcodec_register_all();
pkt = av_packet_alloc(); pkt = av_packet_alloc();
/* find the MPEG audio decoder */ /* find the MPEG audio decoder */

@ -101,8 +101,6 @@ int main(int argc, char **argv)
filename = argv[1]; filename = argv[1];
outfilename = argv[2]; outfilename = argv[2];
avcodec_register_all();
pkt = av_packet_alloc(); pkt = av_packet_alloc();
if (!pkt) if (!pkt)
exit(1); exit(1);

@ -252,9 +252,6 @@ int main (int argc, char **argv)
video_dst_filename = argv[2]; video_dst_filename = argv[2];
audio_dst_filename = argv[3]; audio_dst_filename = argv[3];
/* register all formats and codecs */
av_register_all();
/* open input file, and allocate format context */ /* open input file, and allocate format context */
if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) { if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) {
fprintf(stderr, "Could not open source file %s\n", src_filename); fprintf(stderr, "Could not open source file %s\n", src_filename);

@ -138,9 +138,6 @@ int main(int argc, char **argv)
} }
filename = argv[1]; filename = argv[1];
/* register all the codecs */
avcodec_register_all();
/* find the MP2 encoder */ /* find the MP2 encoder */
codec = avcodec_find_encoder(AV_CODEC_ID_MP2); codec = avcodec_find_encoder(AV_CODEC_ID_MP2);
if (!codec) { if (!codec) {

@ -84,8 +84,6 @@ int main(int argc, char **argv)
filename = argv[1]; filename = argv[1];
codec_name = argv[2]; codec_name = argv[2];
avcodec_register_all();
/* find the mpeg1video encoder */ /* find the mpeg1video encoder */
codec = avcodec_find_encoder_by_name(codec_name); codec = avcodec_find_encoder_by_name(codec_name);
if (!codec) { if (!codec) {

@ -129,8 +129,6 @@ int main(int argc, char **argv)
} }
src_filename = argv[1]; src_filename = argv[1];
av_register_all();
if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) { if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) {
fprintf(stderr, "Could not open source file %s\n", src_filename); fprintf(stderr, "Could not open source file %s\n", src_filename);
exit(1); exit(1);

@ -228,7 +228,6 @@ int main(int argc, char **argv)
exit(1); exit(1);
} }
av_register_all();
avfilter_register_all(); avfilter_register_all();
if ((ret = open_input_file(argv[1])) < 0) if ((ret = open_input_file(argv[1])) < 0)

@ -222,7 +222,6 @@ int main(int argc, char **argv)
exit(1); exit(1);
} }
av_register_all();
avfilter_register_all(); avfilter_register_all();
if ((ret = open_input_file(argv[1])) < 0) if ((ret = open_input_file(argv[1])) < 0)

@ -114,7 +114,6 @@ int main(int argc, char **argv)
in_uri = argv[1]; in_uri = argv[1];
out_uri = argv[2]; out_uri = argv[2];
av_register_all();
avformat_network_init(); avformat_network_init();
if ((ret = av_dict_set(&options, "listen", "2", 0)) < 0) { if ((ret = av_dict_set(&options, "listen", "2", 0)) < 0) {

@ -163,8 +163,6 @@ int main(int argc, char *argv[])
return -1; return -1;
} }
av_register_all();
type = av_hwdevice_find_type_by_name(argv[1]); type = av_hwdevice_find_type_by_name(argv[1]);
if (type == AV_HWDEVICE_TYPE_NONE) { if (type == AV_HWDEVICE_TYPE_NONE) {
fprintf(stderr, "Device type %s is not supported.\n", argv[1]); fprintf(stderr, "Device type %s is not supported.\n", argv[1]);

@ -44,7 +44,6 @@ int main (int argc, char **argv)
return 1; return 1;
} }
av_register_all();
if ((ret = avformat_open_input(&fmt_ctx, argv[1], NULL, NULL))) if ((ret = avformat_open_input(&fmt_ctx, argv[1], NULL, NULL)))
return ret; return ret;

@ -564,9 +564,6 @@ int main(int argc, char **argv)
AVDictionary *opt = NULL; AVDictionary *opt = NULL;
int i; int i;
/* Initialize libavcodec, and register all codecs and formats. */
av_register_all();
if (argc < 2) { if (argc < 2) {
printf("usage: %s output_file\n" printf("usage: %s output_file\n"
"API example program to output a media file with libavformat.\n" "API example program to output a media file with libavformat.\n"

@ -150,8 +150,6 @@ int main(int argc, char **argv)
int ret, i; int ret, i;
av_register_all();
if (argc < 3) { if (argc < 3) {
fprintf(stderr, "Usage: %s <input file> <output file>\n", argv[0]); fprintf(stderr, "Usage: %s <input file> <output file>\n", argv[0]);
return 1; return 1;

@ -65,8 +65,6 @@ int main(int argc, char **argv)
in_filename = argv[1]; in_filename = argv[1];
out_filename = argv[2]; out_filename = argv[2];
av_register_all();
if ((ret = avformat_open_input(&ifmt_ctx, in_filename, 0, 0)) < 0) { if ((ret = avformat_open_input(&ifmt_ctx, in_filename, 0, 0)) < 0) {
fprintf(stderr, "Could not open input file '%s'", in_filename); fprintf(stderr, "Could not open input file '%s'", in_filename);
goto end; goto end;

@ -753,8 +753,6 @@ int main(int argc, char **argv)
exit(1); exit(1);
} }
/* Register all codecs and formats so that they can be used. */
av_register_all();
/* Open the input file for reading. */ /* Open the input file for reading. */
if (open_input_file(argv[1], &input_format_context, if (open_input_file(argv[1], &input_format_context,
&input_codec_context)) &input_codec_context))

@ -517,7 +517,6 @@ int main(int argc, char **argv)
return 1; return 1;
} }
av_register_all();
avfilter_register_all(); avfilter_register_all();
if ((ret = open_input_file(argv[1])) < 0) if ((ret = open_input_file(argv[1])) < 0)

@ -125,8 +125,6 @@ int main(int argc, char *argv[])
goto close; goto close;
} }
avcodec_register_all();
err = av_hwdevice_ctx_create(&hw_device_ctx, AV_HWDEVICE_TYPE_VAAPI, err = av_hwdevice_ctx_create(&hw_device_ctx, AV_HWDEVICE_TYPE_VAAPI,
NULL, NULL, 0); NULL, NULL, 0);
if (err < 0) { if (err < 0) {

@ -238,8 +238,6 @@ int main(int argc, char **argv)
return -1; return -1;
} }
av_register_all();
ret = av_hwdevice_ctx_create(&hw_device_ctx, AV_HWDEVICE_TYPE_VAAPI, NULL, NULL, 0); ret = av_hwdevice_ctx_create(&hw_device_ctx, AV_HWDEVICE_TYPE_VAAPI, NULL, NULL, 0);
if (ret < 0) { if (ret < 0) {
fprintf(stderr, "Failed to create a VAAPI device. Error code: %s\n", av_err2str(ret)); fprintf(stderr, "Failed to create a VAAPI device. Error code: %s\n", av_err2str(ret));

Loading…
Cancel
Save