Commit 0726b2d1 authored by Fabrice Bellard's avatar Fabrice Bellard

fixed double free - fixed jpg image sequence automatic selection

Originally committed as revision 591 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 66d2ff2a
/* /*
* JPEG based formats * JPEG based formats
* Copyright (c) 2000, 2001 Gerard Lantau. * Copyright (c) 2000, 2001 Fabrice Bellard.
* *
* This program is free software; you can redistribute it and/or modify * This library is free software; you can redistribute it and/or
* it under the terms of the GNU General Public License as published by * modify it under the terms of the GNU Lesser General Public
* the Free Software Foundation; either version 2 of the License, or * License as published by the Free Software Foundation; either
* (at your option) any later version. * version 2 of the License, or (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* GNU General Public License for more details. * Lesser General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU Lesser General Public
* along with this program; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "avformat.h" #include "avformat.h"
...@@ -91,7 +91,7 @@ static AVOutputFormat single_jpeg_format = { ...@@ -91,7 +91,7 @@ static AVOutputFormat single_jpeg_format = {
"singlejpeg", "singlejpeg",
"single JPEG image", "single JPEG image",
"image/jpeg", "image/jpeg",
"jpg,jpeg", NULL, /* note: no extension to favorize jpeg multiple images match */
0, 0,
CODEC_ID_NONE, CODEC_ID_NONE,
CODEC_ID_MJPEG, CODEC_ID_MJPEG,
...@@ -145,8 +145,6 @@ static int jpeg_write_packet(AVFormatContext *s1, int stream_index, ...@@ -145,8 +145,6 @@ static int jpeg_write_packet(AVFormatContext *s1, int stream_index,
static int jpeg_write_trailer(AVFormatContext *s1) static int jpeg_write_trailer(AVFormatContext *s1)
{ {
JpegContext *s = s1->priv_data;
av_free(s);
return 0; return 0;
} }
...@@ -228,8 +226,6 @@ static int jpeg_read_packet(AVFormatContext *s1, AVPacket *pkt) ...@@ -228,8 +226,6 @@ static int jpeg_read_packet(AVFormatContext *s1, AVPacket *pkt)
static int jpeg_read_close(AVFormatContext *s1) static int jpeg_read_close(AVFormatContext *s1)
{ {
JpegContext *s = s1->priv_data;
av_free(s);
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment