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

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

Issue 958693004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « source/libvpx/examples/simple_encoder.c ('k') | source/libvpx/examples/vp8cx_set_ref.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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 // ----------------------------- 46 // -----------------------------
47 // Destruction of the encoder instance must be done on each pass. The 47 // Destruction of the encoder instance must be done on each pass. The
48 // raw image should be destroyed at the end as usual. 48 // raw image should be destroyed at the end as usual.
49 49
50 #include <stdio.h> 50 #include <stdio.h>
51 #include <stdlib.h> 51 #include <stdlib.h>
52 #include <string.h> 52 #include <string.h>
53 53
54 #include "vpx/vpx_encoder.h" 54 #include "vpx/vpx_encoder.h"
55 55
56 #include "./tools_common.h" 56 #include "../tools_common.h"
57 #include "./video_writer.h" 57 #include "../video_writer.h"
58 58
59 static const char *exec_name; 59 static const char *exec_name;
60 60
61 void usage_exit() { 61 void usage_exit() {
62 fprintf(stderr, "Usage: %s <codec> <width> <height> <infile> <outfile>\n", 62 fprintf(stderr, "Usage: %s <codec> <width> <height> <infile> <outfile>\n",
63 exec_name); 63 exec_name);
64 exit(EXIT_FAILURE); 64 exit(EXIT_FAILURE);
65 } 65 }
66 66
67 static int get_frame_stats(vpx_codec_ctx_t *ctx, 67 static int get_frame_stats(vpx_codec_ctx_t *ctx,
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 cfg.g_pass = VPX_RC_LAST_PASS; 256 cfg.g_pass = VPX_RC_LAST_PASS;
257 cfg.rc_twopass_stats_in = stats; 257 cfg.rc_twopass_stats_in = stats;
258 pass1(&raw, infile, outfile_arg, encoder, &cfg); 258 pass1(&raw, infile, outfile_arg, encoder, &cfg);
259 free(stats.buf); 259 free(stats.buf);
260 260
261 vpx_img_free(&raw); 261 vpx_img_free(&raw);
262 fclose(infile); 262 fclose(infile);
263 263
264 return EXIT_SUCCESS; 264 return EXIT_SUCCESS;
265 } 265 }
OLDNEW
« no previous file with comments | « source/libvpx/examples/simple_encoder.c ('k') | source/libvpx/examples/vp8cx_set_ref.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698