diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-25 01:00:07 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-25 01:00:07 +0100 |
commit | f4c380a5e65c60422c6f62cab7bfe6155276d11d (patch) | |
tree | 4a004047cb4df4524b97cc284724a3a51e72ae03 /ffmpeg.c | |
parent | ac6798dbc118a8d63a6e57f8a0120666a2449efa (diff) | |
download | ffmpeg-f4c380a5e65c60422c6f62cab7bfe6155276d11d.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |