diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-09-22 11:01:31 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2015-02-14 10:13:49 -0800 |
commit | 7f9f771eac0d37a632e0ed9bd89961d57fcfb7e0 (patch) | |
tree | 5468ce1ec8288ea779ea3754620d6bddcf22e918 /libavcodec/proresdec.c | |
parent | daf8cf358a098a903d59adb6c0d0cc3262a8c93e (diff) | |
download | ffmpeg-7f9f771eac0d37a632e0ed9bd89961d57fcfb7e0.tar.gz |
avcodec: Don't anonymously typedef structs
Diffstat (limited to 'libavcodec/proresdec.c')
-rw-r--r-- | libavcodec/proresdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/proresdec.c b/libavcodec/proresdec.c index 03f63d9dce..1bbe267ec3 100644 --- a/libavcodec/proresdec.c +++ b/libavcodec/proresdec.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; |