summaryrefslogtreecommitdiffstats
path: root/libavcodec/g723_1.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-09-22 11:01:31 +0200
committerDiego Biurrun <diego@biurrun.de>2015-02-14 10:13:49 -0800
commit7f9f771eac0d37a632e0ed9bd89961d57fcfb7e0 (patch)
tree5468ce1ec8288ea779ea3754620d6bddcf22e918 /libavcodec/g723_1.c
parentdaf8cf358a098a903d59adb6c0d0cc3262a8c93e (diff)
downloadffmpeg-streaming-7f9f771eac0d37a632e0ed9bd89961d57fcfb7e0.zip
ffmpeg-streaming-7f9f771eac0d37a632e0ed9bd89961d57fcfb7e0.tar.gz
avcodec: Don't anonymously typedef structs
Diffstat (limited to 'libavcodec/g723_1.c')
-rw-r--r--libavcodec/g723_1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/g723_1.c b/libavcodec/g723_1.c
index bbdb404..f3879bd 100644
--- a/libavcodec/g723_1.c
+++ b/libavcodec/g723_1.c
@@ -55,7 +55,7 @@ enum Rate {
/**
* G723.1 unpacked data subframe
*/
-typedef struct {
+typedef struct G723_1_Subframe {
int ad_cb_lag; ///< adaptive codebook lag
int ad_cb_gain;
int dirac_train;
@@ -68,7 +68,7 @@ typedef struct {
/**
* Pitch postfilter parameters
*/
-typedef struct {
+typedef struct PPFParam {
int index; ///< postfilter backward/forward lag
int16_t opt_gain; ///< optimal gain
int16_t sc_gain; ///< scaling gain
OpenPOWER on IntegriCloud