Commit 714aefbe authored by michael's avatar michael

forgot


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4756 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 247ff774
...@@ -1115,10 +1115,11 @@ int MPV_encode_init(AVCodecContext *avctx) ...@@ -1115,10 +1115,11 @@ int MPV_encode_init(AVCodecContext *avctx)
s->rtp_mode= 1; s->rtp_mode= 1;
break; break;
case CODEC_ID_LJPEG: case CODEC_ID_LJPEG:
case CODEC_ID_JPEGLS:
case CODEC_ID_MJPEG: case CODEC_ID_MJPEG:
s->out_format = FMT_MJPEG; s->out_format = FMT_MJPEG;
s->intra_only = 1; /* force intra only for jpeg */ s->intra_only = 1; /* force intra only for jpeg */
s->mjpeg_write_tables = 1; /* write all tables */ s->mjpeg_write_tables = avctx->codec->id != CODEC_ID_JPEGLS;
s->mjpeg_data_only_frames = 0; /* write all the needed headers */ s->mjpeg_data_only_frames = 0; /* write all the needed headers */
s->mjpeg_vsample[0] = 1<<chroma_v_shift; s->mjpeg_vsample[0] = 1<<chroma_v_shift;
s->mjpeg_vsample[1] = 1; s->mjpeg_vsample[1] = 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment