summaryrefslogtreecommitdiff
path: root/libavcodec/proresdec_lgpl.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-14 21:18:17 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-14 21:18:17 +0100
commita94eba6f0c0666de8ccbc56c62112d7e5f1132be (patch)
treef926b3af6429d0318cb785aacace2d1b967f0a35 /libavcodec/proresdec_lgpl.c
parenta0fe1a25fa76809005cb90beb09e66cb7493b353 (diff)
parent7f9f771eac0d37a632e0ed9bd89961d57fcfb7e0 (diff)
Merge commit '7f9f771eac0d37a632e0ed9bd89961d57fcfb7e0'
* commit '7f9f771eac0d37a632e0ed9bd89961d57fcfb7e0': avcodec: Don't anonymously typedef structs Conflicts: libavcodec/alac.c libavcodec/cinepak.c libavcodec/cscd.c libavcodec/dcadec.c libavcodec/g723_1.c libavcodec/gif.c libavcodec/iff.c libavcodec/kgv1dec.c libavcodec/libopenjpegenc.c libavcodec/libspeexenc.c libavcodec/ra288.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/proresdec_lgpl.c')
-rw-r--r--libavcodec/proresdec_lgpl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/proresdec_lgpl.c b/libavcodec/proresdec_lgpl.c
index a2ee419988..a680bd6455 100644
--- a/libavcodec/proresdec_lgpl.c
+++ b/libavcodec/proresdec_lgpl.c
@@ -40,7 +40,7 @@
#include "proresdsp.h"
#include "get_bits.h"
-typedef struct {
+typedef struct ProresThreadData {
const uint8_t *index; ///< pointers to the data of this slice
int slice_num;
int x_pos, y_pos;
@@ -51,7 +51,7 @@ typedef struct {
DECLARE_ALIGNED(16, int16_t, qmat_chroma_scaled)[64];
} ProresThreadData;
-typedef struct {
+typedef struct ProresContext {
ProresDSPContext dsp;
AVFrame *frame;
ScanTable scantable;