diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-04-26 13:52:12 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-04-26 20:18:27 +0200 |
commit | e6ff064845d02c43526c8a56dab121c219f16659 (patch) | |
tree | 2b2e1f7c601568d61cfdec616e0c7df0b5ea0f3b /libavformat/nutenc.c | |
parent | 9d35fa520e3b27f7dd9fe12c433eb596f1271515 (diff) | |
download | ffmpeg-e6ff064845d02c43526c8a56dab121c219f16659.tar.gz |
Eliminate pointless '#if 1' statements without matching '#else'.
Diffstat (limited to 'libavformat/nutenc.c')
-rw-r--r-- | libavformat/nutenc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index c17a15dbf3..df5dc6fdf7 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -175,7 +175,6 @@ static void build_frame_code(AVFormatContext *s){ } key_frame= intra_only; -#if 1 if(is_audio){ int frame_bytes= codec->frame_size*(int64_t)codec->bit_rate / (8*codec->sample_rate); int pts; @@ -199,7 +198,6 @@ static void build_frame_code(AVFormatContext *s){ ft->pts_delta=1; start2++; } -#endif if(codec->has_b_frames){ pred_count=5; |