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

Side by Side Diff: patched-ffmpeg-mt/libavcodec/wmv2.h

Issue 789004: ffmpeg roll of source to mar 9 version... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: '' Created 10 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2002 The FFmpeg Project 2 * Copyright (c) 2002 The FFmpeg Project
3 * 3 *
4 * This file is part of FFmpeg. 4 * This file is part of FFmpeg.
5 * 5 *
6 * FFmpeg is free software; you can redistribute it and/or 6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public 7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version. 9 * version 2.1 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 int per_mb_abt; 43 int per_mb_abt;
44 int per_block_abt; 44 int per_block_abt;
45 int mspel_bit; 45 int mspel_bit;
46 int cbp_table_index; 46 int cbp_table_index;
47 int top_left_mv_flag; 47 int top_left_mv_flag;
48 int per_mb_rl_bit; 48 int per_mb_rl_bit;
49 int skip_type; 49 int skip_type;
50 int hshift; 50 int hshift;
51 51
52 ScanTable abt_scantable[2]; 52 ScanTable abt_scantable[2];
53 DECLARE_ALIGNED_16(DCTELEM, abt_block2)[6][64]; 53 DECLARE_ALIGNED(16, DCTELEM, abt_block2)[6][64];
54 }Wmv2Context; 54 }Wmv2Context;
55 55
56 void ff_wmv2_common_init(Wmv2Context * w); 56 void ff_wmv2_common_init(Wmv2Context * w);
57 57
58 #endif /* AVCODEC_WMV2_H */ 58 #endif /* AVCODEC_WMV2_H */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698