lavd/sdl: do not manually free window_title and icon_title fields

They are automatically freed when calling av_write_trailer(). Simplify.
This commit is contained in:
Stefano Sabatini 2013-11-24 19:29:04 +01:00
parent 8446bb33d1
commit 25c675b5a7

View File

@ -57,9 +57,6 @@ static int sdl_write_trailer(AVFormatContext *s)
{ {
SDLContext *sdl = s->priv_data; SDLContext *sdl = s->priv_data;
av_freep(&sdl->window_title);
av_freep(&sdl->icon_title);
if (sdl->overlay) { if (sdl->overlay) {
SDL_FreeYUVOverlay(sdl->overlay); SDL_FreeYUVOverlay(sdl->overlay);
sdl->overlay = NULL; sdl->overlay = NULL;