diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-12-04 12:42:50 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-12-04 12:42:50 +0000 |
commit | 765debf51f1aee58b6748e575082ecd30033b323 (patch) | |
tree | 2bf9e6e5a306b4de6c41cb7b24ce9121d32e0a04 /libavformat/au.c | |
parent | 266e88a47cfcf6ffbc12aa4bbc37a524d6ad0765 (diff) | |
download | ffmpeg-765debf51f1aee58b6748e575082ecd30033b323.tar.gz |
auenc: remove pointless assigment
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/au.c')
-rw-r--r-- | libavformat/au.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/au.c b/libavformat/au.c index 6797c3c479..2c1daffa39 100644 --- a/libavformat/au.c +++ b/libavformat/au.c @@ -71,8 +71,6 @@ static int au_write_header(AVFormatContext *s) { AVIOContext *pb = s->pb; - s->priv_data = NULL; - /* format header */ if (put_au_header(pb, s->streams[0]->codec) < 0) { return -1; |