mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/matroskaenc: Remove unnecessary headers
subtitles.h has been included in order to use ff_subtitles_next_line() to help parsing srt subtitles which at that time had their timing as part of the payload and not as part of the AVPacket fields. When this changed (in55180b32
) it has been forgotten to remove this header. libavcodec/internal.h meanwhile has been added inbb47aa5850
and has never been used at all. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
7104c4dd88
commit
081ef58619
|
@ -32,7 +32,6 @@
|
|||
#include "isom.h"
|
||||
#include "matroska.h"
|
||||
#include "riff.h"
|
||||
#include "subtitles.h"
|
||||
#include "vorbiscomment.h"
|
||||
#include "wv.h"
|
||||
|
||||
|
@ -55,7 +54,6 @@
|
|||
|
||||
#include "libavcodec/xiph.h"
|
||||
#include "libavcodec/mpeg4audio.h"
|
||||
#include "libavcodec/internal.h"
|
||||
|
||||
/* Level 1 elements we create a SeekHead entry for:
|
||||
* Info, Tracks, Chapters, Attachments, Tags and Cues */
|
||||
|
|
Loading…
Reference in New Issue