Browse Source

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

tags/n4.0
Mark Thompson 7 years ago
parent
commit
10bcc41bb4
20 changed files with 0 additions and 40 deletions
  1. +0
    -2
      doc/examples/avio_dir_cmd.c
  2. +0
    -3
      doc/examples/avio_reading.c
  3. +0
    -3
      doc/examples/decode_audio.c
  4. +0
    -2
      doc/examples/decode_video.c
  5. +0
    -3
      doc/examples/demuxing_decoding.c
  6. +0
    -3
      doc/examples/encode_audio.c
  7. +0
    -2
      doc/examples/encode_video.c
  8. +0
    -2
      doc/examples/extract_mvs.c
  9. +0
    -1
      doc/examples/filtering_audio.c
  10. +0
    -1
      doc/examples/filtering_video.c
  11. +0
    -1
      doc/examples/http_multiclient.c
  12. +0
    -2
      doc/examples/hw_decode.c
  13. +0
    -1
      doc/examples/metadata.c
  14. +0
    -3
      doc/examples/muxing.c
  15. +0
    -2
      doc/examples/qsvdec.c
  16. +0
    -2
      doc/examples/remuxing.c
  17. +0
    -2
      doc/examples/transcode_aac.c
  18. +0
    -1
      doc/examples/transcoding.c
  19. +0
    -2
      doc/examples/vaapi_encode.c
  20. +0
    -2
      doc/examples/vaapi_transcode.c

+ 0
- 2
doc/examples/avio_dir_cmd.c View File

@@ -143,8 +143,6 @@ int main(int argc, char *argv[])
return 1;
}

/* register codecs and formats and other lavf/lavc components*/
av_register_all();
avformat_network_init();

op = argv[1];


+ 0
- 3
doc/examples/avio_reading.c View File

@@ -74,9 +74,6 @@ int main(int argc, char *argv[])
}
input_filename = argv[1];

/* register codecs and formats and other lavf/lavc components*/
av_register_all();

/* slurp file content into buffer */
ret = av_file_map(input_filename, &buffer, &buffer_size, 0, NULL);
if (ret < 0)


+ 0
- 3
doc/examples/decode_audio.c View File

@@ -94,9 +94,6 @@ int main(int argc, char **argv)
filename = argv[1];
outfilename = argv[2];

/* register all the codecs */
avcodec_register_all();

pkt = av_packet_alloc();

/* find the MPEG audio decoder */


+ 0
- 2
doc/examples/decode_video.c View File

@@ -101,8 +101,6 @@ int main(int argc, char **argv)
filename = argv[1];
outfilename = argv[2];

avcodec_register_all();

pkt = av_packet_alloc();
if (!pkt)
exit(1);


+ 0
- 3
doc/examples/demuxing_decoding.c View File

@@ -252,9 +252,6 @@ int main (int argc, char **argv)
video_dst_filename = argv[2];
audio_dst_filename = argv[3];

/* register all formats and codecs */
av_register_all();

/* open input file, and allocate format context */
if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) {
fprintf(stderr, "Could not open source file %s\n", src_filename);


+ 0
- 3
doc/examples/encode_audio.c View File

@@ -138,9 +138,6 @@ int main(int argc, char **argv)
}
filename = argv[1];

/* register all the codecs */
avcodec_register_all();

/* find the MP2 encoder */
codec = avcodec_find_encoder(AV_CODEC_ID_MP2);
if (!codec) {


+ 0
- 2
doc/examples/encode_video.c View File

@@ -84,8 +84,6 @@ int main(int argc, char **argv)
filename = argv[1];
codec_name = argv[2];

avcodec_register_all();

/* find the mpeg1video encoder */
codec = avcodec_find_encoder_by_name(codec_name);
if (!codec) {


+ 0
- 2
doc/examples/extract_mvs.c View File

@@ -129,8 +129,6 @@ int main(int argc, char **argv)
}
src_filename = argv[1];

av_register_all();

if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) {
fprintf(stderr, "Could not open source file %s\n", src_filename);
exit(1);


+ 0
- 1
doc/examples/filtering_audio.c View File

@@ -228,7 +228,6 @@ int main(int argc, char **argv)
exit(1);
}

av_register_all();
avfilter_register_all();

if ((ret = open_input_file(argv[1])) < 0)


+ 0
- 1
doc/examples/filtering_video.c View File

@@ -222,7 +222,6 @@ int main(int argc, char **argv)
exit(1);
}

av_register_all();
avfilter_register_all();

if ((ret = open_input_file(argv[1])) < 0)


+ 0
- 1
doc/examples/http_multiclient.c View File

@@ -114,7 +114,6 @@ int main(int argc, char **argv)
in_uri = argv[1];
out_uri = argv[2];

av_register_all();
avformat_network_init();

if ((ret = av_dict_set(&options, "listen", "2", 0)) < 0) {


+ 0
- 2
doc/examples/hw_decode.c View File

@@ -163,8 +163,6 @@ int main(int argc, char *argv[])
return -1;
}

av_register_all();

type = av_hwdevice_find_type_by_name(argv[1]);
if (type == AV_HWDEVICE_TYPE_NONE) {
fprintf(stderr, "Device type %s is not supported.\n", argv[1]);


+ 0
- 1
doc/examples/metadata.c View File

@@ -44,7 +44,6 @@ int main (int argc, char **argv)
return 1;
}

av_register_all();
if ((ret = avformat_open_input(&fmt_ctx, argv[1], NULL, NULL)))
return ret;



+ 0
- 3
doc/examples/muxing.c View File

@@ -564,9 +564,6 @@ int main(int argc, char **argv)
AVDictionary *opt = NULL;
int i;

/* Initialize libavcodec, and register all codecs and formats. */
av_register_all();

if (argc < 2) {
printf("usage: %s output_file\n"
"API example program to output a media file with libavformat.\n"


+ 0
- 2
doc/examples/qsvdec.c View File

@@ -150,8 +150,6 @@ int main(int argc, char **argv)

int ret, i;

av_register_all();

if (argc < 3) {
fprintf(stderr, "Usage: %s <input file> <output file>\n", argv[0]);
return 1;


+ 0
- 2
doc/examples/remuxing.c View File

@@ -65,8 +65,6 @@ int main(int argc, char **argv)
in_filename = argv[1];
out_filename = argv[2];

av_register_all();

if ((ret = avformat_open_input(&ifmt_ctx, in_filename, 0, 0)) < 0) {
fprintf(stderr, "Could not open input file '%s'", in_filename);
goto end;


+ 0
- 2
doc/examples/transcode_aac.c View File

@@ -753,8 +753,6 @@ int main(int argc, char **argv)
exit(1);
}

/* Register all codecs and formats so that they can be used. */
av_register_all();
/* Open the input file for reading. */
if (open_input_file(argv[1], &input_format_context,
&input_codec_context))


+ 0
- 1
doc/examples/transcoding.c View File

@@ -517,7 +517,6 @@ int main(int argc, char **argv)
return 1;
}

av_register_all();
avfilter_register_all();

if ((ret = open_input_file(argv[1])) < 0)


+ 0
- 2
doc/examples/vaapi_encode.c View File

@@ -125,8 +125,6 @@ int main(int argc, char *argv[])
goto close;
}

avcodec_register_all();

err = av_hwdevice_ctx_create(&hw_device_ctx, AV_HWDEVICE_TYPE_VAAPI,
NULL, NULL, 0);
if (err < 0) {


+ 0
- 2
doc/examples/vaapi_transcode.c View File

@@ -238,8 +238,6 @@ int main(int argc, char **argv)
return -1;
}

av_register_all();

ret = av_hwdevice_ctx_create(&hw_device_ctx, AV_HWDEVICE_TYPE_VAAPI, NULL, NULL, 0);
if (ret < 0) {
fprintf(stderr, "Failed to create a VAAPI device. Error code: %s\n", av_err2str(ret));


Loading…
Cancel
Save