forked from FFmpeg/FFmpeg
avformat/flvdec: clean up variable initialization spacing
This commit is contained in:
parent
0ed3446738
commit
4c2b769e53
1 changed files with 2 additions and 2 deletions
|
@ -1278,12 +1278,12 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||||
int ret = 0, i, size, flags;
|
int ret = 0, i, size, flags;
|
||||||
int res = 0;
|
int res = 0;
|
||||||
enum FlvTagType type;
|
enum FlvTagType type;
|
||||||
int stream_type=-1;
|
int stream_type = -1;
|
||||||
int64_t next, pos, meta_pos;
|
int64_t next, pos, meta_pos;
|
||||||
int64_t dts, pts = AV_NOPTS_VALUE;
|
int64_t dts, pts = AV_NOPTS_VALUE;
|
||||||
int av_uninit(channels);
|
int av_uninit(channels);
|
||||||
int av_uninit(sample_rate);
|
int av_uninit(sample_rate);
|
||||||
AVStream *st = NULL;
|
AVStream *st = NULL;
|
||||||
int last = -1;
|
int last = -1;
|
||||||
int orig_size;
|
int orig_size;
|
||||||
int enhanced_flv = 0;
|
int enhanced_flv = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue