mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
cleanup useless fields
Originally committed as revision 8224 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
013e0a8f35
commit
8fafc1cf36
@ -65,7 +65,6 @@ typedef struct {
|
||||
|
||||
int samples_per_frame;
|
||||
int sound_samples;
|
||||
int video_samples;
|
||||
int swf_frame_number;
|
||||
int video_frame_number;
|
||||
int ms_per_frame;
|
||||
@ -73,8 +72,6 @@ typedef struct {
|
||||
|
||||
uint8_t audio_fifo[AUDIO_FIFO_SIZE];
|
||||
int audio_in_pos;
|
||||
int audio_out_pos;
|
||||
int audio_size;
|
||||
|
||||
int video_type;
|
||||
int audio_type;
|
||||
@ -254,10 +251,7 @@ static int swf_write_header(AVFormatContext *s)
|
||||
int i, width, height, rate, rate_base;
|
||||
|
||||
swf->audio_in_pos = 0;
|
||||
swf->audio_out_pos = 0;
|
||||
swf->audio_size = 0;
|
||||
swf->sound_samples = 0;
|
||||
swf->video_samples = 0;
|
||||
swf->swf_frame_number = 0;
|
||||
swf->video_frame_number = 0;
|
||||
|
||||
@ -506,8 +500,6 @@ static int swf_write_video(AVFormatContext *s,
|
||||
|
||||
swf->swf_frame_number ++;
|
||||
|
||||
swf->video_samples += swf->samples_per_frame;
|
||||
|
||||
/* streaming sound always should be placed just before showframe tags */
|
||||
if (swf->audio_type && swf->audio_in_pos) {
|
||||
put_swf_tag(s, TAG_STREAMBLOCK | TAG_LONG);
|
||||
|
Loading…
x
Reference in New Issue
Block a user