diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2009-01-31 01:36:00 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2009-01-31 01:36:00 +0000 |
commit | 5c2a9dd64e3316af2fbf282671ef09532987a865 (patch) | |
tree | e0d1c92cdaeab1463c59f4874834e077fedf2cf0 /libavcodec/dv.c | |
parent | 2331854d0b2b9a0b25078e26419623daecae8ca9 (diff) | |
download | ffmpeg-5c2a9dd64e3316af2fbf282671ef09532987a865.tar.gz |
Cosmetics: replacing 0 with NULL for pointer assignment
Originally committed as revision 16874 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 3577ffabb4..06d0dfd52b 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -1015,7 +1015,7 @@ static int dv_encode_video_segment(AVCodecContext *avctx, DVwork_chunk *work_chu linesize = s->picture.linesize[6 - j]; } else { /* j=1 and j=3 are "dummy" blocks, used for AC data only */ - data = 0; + data = NULL; linesize = 0; dummy = 1; } |