]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/tools/vcpkg/ports/libtheora/0001-fix-uwp.patch
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / tools / vcpkg / ports / libtheora / 0001-fix-uwp.patch
1 From 47eb8d07a8caaa6cc1e6e906a7cd5b44ee0fb624 Mon Sep 17 00:00:00 2001
2 From: Mikhail Paulyshka <me@mixaill.tk>
3 Date: Thu, 27 Jul 2017 04:24:36 +0300
4 Subject: [PATCH] remove redundant assignments
5
6 ---
7 lib/tokenize.c | 16 ++++++++--------
8 1 file changed, 8 insertions(+), 8 deletions(-)
9
10 diff --git a/lib/tokenize.c b/lib/tokenize.c
11 index 57b7aa8..3f53fb5 100644
12 --- a/lib/tokenize.c
13 +++ b/lib/tokenize.c
14 @@ -487,11 +487,11 @@ int oc_enc_tokenize_ac(oc_enc_ctx *_enc,int _pli,ptrdiff_t _fragi,
15 zzj=64;
16 for(zzi=OC_MINI(_zzi,63);zzi>0;zzi--){
17 ogg_uint32_t best_cost;
18 - int best_bits=best_bits;
19 - int best_next=best_next;
20 - int best_token=best_token;
21 - int best_eb=best_eb;
22 - int best_qc=best_qc;
23 + int best_bits;
24 + int best_next;
25 + int best_token;
26 + int best_eb;
27 + int best_qc;
28 ogg_uint32_t d2;
29 int dq;
30 int qc_m;
31 @@ -1091,8 +1091,8 @@ void oc_enc_tokenize_dc_frag_list(oc_enc_ctx *_enc,int _pli,
32 int neobs1;
33 int token;
34 int eb;
35 - int token1=token1;
36 - int eb1=eb1;
37 + int token1;
38 + int eb1;
39 /*Return immediately if there are no coded fragments; otherwise we'd flush
40 any trailing EOB run into the AC 1 list and never read it back out.*/
41 if(_ncoded_fragis<=0)return;
42 @@ -1328,7 +1328,7 @@ void oc_enc_tokenize_finish(oc_enc_ctx *_enc){
43 int new_eb;
44 int zzj;
45 int plj;
46 - ptrdiff_t ti=ti;
47 + ptrdiff_t ti;
48 int run_count;
49 /*Make sure this coefficient has tokens at all.*/
50 if(_enc->ndct_tokens[pli][zzi]<=0)continue;
51 --
52 2.12.2.windows.2
53