mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
latmenc: remove unused return value.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
parent
e6ad943734
commit
fa8a6385a1
@ -84,7 +84,7 @@ static int latm_write_header(AVFormatContext *s)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int latm_write_frame_header(AVFormatContext *s, PutBitContext *bs)
|
||||
static void latm_write_frame_header(AVFormatContext *s, PutBitContext *bs)
|
||||
{
|
||||
LATMContext *ctx = s->priv_data;
|
||||
AVCodecContext *avctx = s->streams[0]->codec;
|
||||
@ -125,8 +125,6 @@ static int latm_write_frame_header(AVFormatContext *s, PutBitContext *bs)
|
||||
|
||||
ctx->counter++;
|
||||
ctx->counter %= ctx->mod;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int latm_write_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
|
Loading…
Reference in New Issue
Block a user