diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-16 23:14:44 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-19 12:23:58 +0200 |
commit | 58bc9ac5cbdfac49ba81add3414a9a62e05c11d2 (patch) | |
tree | 51c0f274cd477951b06ccab0ccc1507b7ea5ac8e | |
parent | b0b83973d11a93de142994d3230e7b2b8b42ddb5 (diff) | |
download | ffmpeg-58bc9ac5cbdfac49ba81add3414a9a62e05c11d2.tar.gz |
ffmpeg: remove unused fields AVOutputStream.original_width/height
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
-rw-r--r-- | ffmpeg.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -289,10 +289,6 @@ typedef struct AVOutputStream { float frame_aspect_ratio; - /* full frame size of first frame */ - int original_height; - int original_width; - /* forced key frames */ int64_t *forced_kf_pts; int forced_kf_count; @@ -2310,9 +2306,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= frame_bits_per_raw_sample; } |