diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-16 23:14:44 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-05-10 07:17:52 +0200 |
commit | bc97695af84304e5e95658ca26e00c6e7074eca4 (patch) | |
tree | 41b6e0c541e3ff078f8c50609ca0bf47a8d18ddf | |
parent | f38d900fb8b27870ff8ac176ad07a01e08428b92 (diff) | |
download | ffmpeg-bc97695af84304e5e95658ca26e00c6e7074eca4.tar.gz |
ffmpeg: remove unused fields AVOutputStream.original_width/height
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r-- | ffmpeg.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -282,10 +282,6 @@ typedef struct AVOutputStream { int resample_width; int resample_pix_fmt; - /* full frame size of first frame */ - int original_height; - int original_width; - /* forced key frames */ int64_t *forced_kf_pts; int forced_kf_count; @@ -2188,9 +2184,6 @@ static int transcode(AVFormatContext **output_files, fprintf(stderr, "Cannot get resampling context\n"); ffmpeg_exit(1); } - - ost->original_height = icodec->height; - ost->original_width = icodec->width; #endif codec->bits_per_raw_sample= 0; } |