1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

mpegvideo: remove an unneeded call to avcodec_get_frame_defaults().

ff_mpeg_unref_picture() already resets the frame.
This commit is contained in:
Anton Khirnov 2013-12-09 11:54:46 +01:00
parent 84f131921f
commit b06c8bce02

View File

@ -1396,7 +1396,6 @@ int ff_find_unused_picture(MpegEncContext *s, int shared)
s->picture[ret].needs_realloc = 0; s->picture[ret].needs_realloc = 0;
ff_free_picture_tables(&s->picture[ret]); ff_free_picture_tables(&s->picture[ret]);
ff_mpeg_unref_picture(s, &s->picture[ret]); ff_mpeg_unref_picture(s, &s->picture[ret]);
avcodec_get_frame_defaults(&s->picture[ret].f);
} }
} }
return ret; return ret;