Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Side by Side Diff: source/libvpx/examples/decode_to_md5.c

Issue 394353005: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « source/libvpx/configure ('k') | source/libvpx/examples/decode_with_drops.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 97
98 if (!(outfile = fopen(argv[2], "wb"))) 98 if (!(outfile = fopen(argv[2], "wb")))
99 die("Failed to open %s for writing.", argv[2]); 99 die("Failed to open %s for writing.", argv[2]);
100 100
101 info = vpx_video_reader_get_info(reader); 101 info = vpx_video_reader_get_info(reader);
102 102
103 decoder = get_vpx_decoder_by_fourcc(info->codec_fourcc); 103 decoder = get_vpx_decoder_by_fourcc(info->codec_fourcc);
104 if (!decoder) 104 if (!decoder)
105 die("Unknown input codec."); 105 die("Unknown input codec.");
106 106
107 printf("Using %s\n", vpx_codec_iface_name(decoder->interface())); 107 printf("Using %s\n", vpx_codec_iface_name(decoder->codec_interface()));
108 108
109 if (vpx_codec_dec_init(&codec, decoder->interface(), NULL, 0)) 109 if (vpx_codec_dec_init(&codec, decoder->codec_interface(), NULL, 0))
110 die_codec(&codec, "Failed to initialize decoder"); 110 die_codec(&codec, "Failed to initialize decoder");
111 111
112 while (vpx_video_reader_read_frame(reader)) { 112 while (vpx_video_reader_read_frame(reader)) {
113 vpx_codec_iter_t iter = NULL; 113 vpx_codec_iter_t iter = NULL;
114 vpx_image_t *img = NULL; 114 vpx_image_t *img = NULL;
115 size_t frame_size = 0; 115 size_t frame_size = 0;
116 const unsigned char *frame = vpx_video_reader_get_frame(reader, 116 const unsigned char *frame = vpx_video_reader_get_frame(reader,
117 &frame_size); 117 &frame_size);
118 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0)) 118 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0))
119 die_codec(&codec, "Failed to decode frame"); 119 die_codec(&codec, "Failed to decode frame");
(...skipping 10 matching lines...) Expand all
130 130
131 printf("Processed %d frames.\n", frame_cnt); 131 printf("Processed %d frames.\n", frame_cnt);
132 if (vpx_codec_destroy(&codec)) 132 if (vpx_codec_destroy(&codec))
133 die_codec(&codec, "Failed to destroy codec."); 133 die_codec(&codec, "Failed to destroy codec.");
134 134
135 vpx_video_reader_close(reader); 135 vpx_video_reader_close(reader);
136 136
137 fclose(outfile); 137 fclose(outfile);
138 return EXIT_SUCCESS; 138 return EXIT_SUCCESS;
139 } 139 }
OLDNEW
« no previous file with comments | « source/libvpx/configure ('k') | source/libvpx/examples/decode_with_drops.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698