Commit df92772c authored by Måns Rullgård's avatar Måns Rullgård

apedec: add flush function

Originally committed as revision 23900 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 680b2321
...@@ -877,6 +877,12 @@ static int ape_decode_frame(AVCodecContext * avctx, ...@@ -877,6 +877,12 @@ static int ape_decode_frame(AVCodecContext * avctx,
return bytes_used; return bytes_used;
} }
static void ape_flush(AVCodecContext *avctx)
{
APEContext *s = avctx->priv_data;
s->samples= 0;
}
AVCodec ape_decoder = { AVCodec ape_decoder = {
"ape", "ape",
AVMEDIA_TYPE_AUDIO, AVMEDIA_TYPE_AUDIO,
...@@ -887,5 +893,6 @@ AVCodec ape_decoder = { ...@@ -887,5 +893,6 @@ AVCodec ape_decoder = {
ape_decode_close, ape_decode_close,
ape_decode_frame, ape_decode_frame,
.capabilities = CODEC_CAP_SUBFRAMES, .capabilities = CODEC_CAP_SUBFRAMES,
.flush = ape_flush,
.long_name = NULL_IF_CONFIG_SMALL("Monkey's Audio"), .long_name = NULL_IF_CONFIG_SMALL("Monkey's Audio"),
}; };
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