1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

flv: K&R formatting cosmetics

This commit is contained in:
Luca Barbato 2014-04-26 14:09:55 +02:00
parent ba71c74017
commit c6b42e8549

View File

@ -22,7 +22,8 @@
#include "flv.h"
#include "libavutil/imgutils.h"
void ff_flv2_decode_ac_esc(GetBitContext *gb, int *level, int *run, int *last){
void ff_flv2_decode_ac_esc(GetBitContext *gb, int *level, int *run, int *last)
{
int is11 = get_bits1(gb);
*last = get_bits1(gb);
*run = get_bits(gb, 6);
@ -102,9 +103,8 @@ int ff_flv_decode_picture_header(MpegEncContext *s)
s->h263_long_vectors = 0;
/* PEI */
while (get_bits1(&s->gb) != 0) {
while (get_bits1(&s->gb) != 0)
skip_bits(&s->gb, 8);
}
s->f_code = 1;
if (s->avctx->debug & FF_DEBUG_PICT_INFO) {
@ -113,8 +113,7 @@ int ff_flv_decode_picture_header(MpegEncContext *s)
s->h263_flv - 1, s->qscale, s->picture_number);
}
s->y_dc_scale_table=
s->c_dc_scale_table= ff_mpeg1_dc_scale_table;
s->y_dc_scale_table = s->c_dc_scale_table = ff_mpeg1_dc_scale_table;
return 0;
}