This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Remove useless assignment during initialization for some decoders
Originally committed as revision 18680 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Kostya Shishkov
16 years ago
parent
f83c57735e
commit
1c86db80a9
12 changed files
with
0 additions
and
15 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-1
libavcodec/aasc.c
+0
-1
libavcodec/fraps.c
+0
-2
libavcodec/kmvc.c
+0
-1
libavcodec/qpeg.c
+0
-2
libavcodec/smacker.c
+0
-1
libavcodec/targa.c
+0
-1
libavcodec/tiff.c
+0
-1
libavcodec/tscc.c
+0
-2
libavcodec/vmdav.c
+0
-1
libavcodec/vmnc.c
+0
-1
libavcodec/zmbv.c
+0
-1
libavcodec/zmbvenc.c
+ 0
- 1
libavcodec/aasc.c
View File
@@ -52,7 +52,6 @@ static av_cold int aasc_decode_init(AVCodecContext *avctx)
s->avctx = avctx;
avctx->pix_fmt = PIX_FMT_BGR24;
s->frame.data[0] = NULL;
return 0;
}
+ 0
- 1
libavcodec/fraps.c
View File
@@ -63,7 +63,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
avctx->pix_fmt= PIX_FMT_NONE; /* set in decode_frame */
s->avctx = avctx;
s->frame.data[0] = NULL;
s->tmpbuf = NULL;
dsputil_init(&s->dsp, avctx);
+ 0
- 2
libavcodec/kmvc.c
View File
@@ -346,8 +346,6 @@ static av_cold int decode_init(AVCodecContext * avctx)
c->avctx = avctx;
c->pic.data[0] = NULL;
if (avctx->width > 320 || avctx->height > 200) {
av_log(avctx, AV_LOG_ERROR, "KMVC supports frames <= 320x200\n");
return -1;
+ 0
- 1
libavcodec/qpeg.c
View File
@@ -291,7 +291,6 @@ static av_cold int decode_init(AVCodecContext *avctx){
a->avctx = avctx;
avctx->pix_fmt= PIX_FMT_PAL8;
a->pic.data[0] = NULL;
a->refdata = av_malloc(avctx->width * avctx->height);
return 0;
+ 0
- 2
libavcodec/smacker.c
View File
@@ -514,8 +514,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
c->avctx = avctx;
c->pic.data[0] = NULL;
if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) {
return 1;
}
+ 0
- 1
libavcodec/targa.c
View File
@@ -229,7 +229,6 @@ static av_cold int targa_init(AVCodecContext *avctx){
avcodec_get_frame_defaults((AVFrame*)&s->picture);
avctx->coded_frame= (AVFrame*)&s->picture;
s->picture.data[0] = NULL;
return 0;
}
+ 0
- 1
libavcodec/tiff.c
View File
@@ -512,7 +512,6 @@ static av_cold int tiff_init(AVCodecContext *avctx){
s->avctx = avctx;
avcodec_get_frame_defaults((AVFrame*)&s->picture);
avctx->coded_frame= (AVFrame*)&s->picture;
s->picture.data[0] = NULL;
ff_lzw_decode_open(&s->lzw);
ff_ccitt_unpack_init();
+ 0
- 1
libavcodec/tscc.c
View File
@@ -139,7 +139,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
c->avctx = avctx;
c->pic.data[0] = NULL;
c->height = avctx->height;
if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) {
+ 0
- 2
libavcodec/vmdav.c
View File
@@ -359,8 +359,6 @@ static av_cold int vmdvideo_decode_init(AVCodecContext *avctx)
palette32[i] = (r << 16) | (g << 8) | (b);
}
s->frame.data[0] = s->prev_frame.data[0] = NULL;
return 0;
}
+ 0
- 1
libavcodec/vmnc.c
View File
@@ -465,7 +465,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
c->avctx = avctx;
c->pic.data[0] = NULL;
c->width = avctx->width;
c->height = avctx->height;
+ 0
- 1
libavcodec/zmbv.c
View File
@@ -599,7 +599,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
c->avctx = avctx;
c->pic.data[0] = NULL;
c->width = avctx->width;
c->height = avctx->height;
+ 0
- 1
libavcodec/zmbvenc.c
View File
@@ -251,7 +251,6 @@ static av_cold int encode_init(AVCodecContext *avctx)
c->avctx = avctx;
c->pic.data[0] = NULL;
c->curfrm = 0;
c->keyint = avctx->keyint_min;
c->range = 8;
Write
Preview
Loading…
Cancel
Save