Browse Source

Move av_read_frame_flush() prototype to lavf/internal.h

Originally committed as revision 22268 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Måns Rullgård 15 years ago
parent
commit
e16c73e67e
2 changed files with 2 additions and 1 deletions
  1. +2
    -0
      libavformat/internal.h
  2. +0
    -1
      libavformat/seek.c

+ 2
- 0
libavformat/internal.h View File

@@ -35,4 +35,6 @@ void av_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int i
void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt, void ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
int (*compare)(AVFormatContext *, AVPacket *, AVPacket *)); int (*compare)(AVFormatContext *, AVPacket *, AVPacket *));


void av_read_frame_flush(AVFormatContext *s);

#endif /* AVFORMAT_INTERNAL_H */ #endif /* AVFORMAT_INTERNAL_H */

+ 0
- 1
libavformat/seek.c View File

@@ -25,7 +25,6 @@


// NOTE: implementation should be moved here in another patch, to keep patches // NOTE: implementation should be moved here in another patch, to keep patches
// separated. // separated.
extern void av_read_frame_flush(AVFormatContext *s);


/** /**
* helper structure describing keyframe search state of one stream * helper structure describing keyframe search state of one stream


Loading…
Cancel
Save