Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-03-25 04:00:07 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-03-25 04:00:07 +0400
commitf4c380a5e65c60422c6f62cab7bfe6155276d11d (patch)
tree4a004047cb4df4524b97cc284724a3a51e72ae03 /ffmpeg.c
parentac6798dbc118a8d63a6e57f8a0120666a2449efa (diff)
ffmpeg: drop struct from SwrContext.
Its a typdef now and doesnt need the struct anymore. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 8f9735b6fb..db2066a42b 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -281,7 +281,7 @@ typedef struct OutputStream {
AVFifoBuffer *fifo; /* for compression: one audio fifo per codec */
FILE *logfile;
- struct SwrContext *swr;
+ SwrContext *swr;
#if CONFIG_AVFILTER
AVFilterContext *output_video_filter;