Commit bf940eee authored by diego's avatar diego

Simplify another 'if' condition: Replace 'exp == 0' by '!exp'.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19650 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 47900ce5
......@@ -261,7 +261,7 @@ static int libschroedinger_encode_frame(AVCodecContext *avccontext,
int parse_code;
int last_frame_in_sequence = 0;
if(data == NULL) {
if (!data) {
/* Push end of sequence if not already signalled. */
if (!p_schro_params->eos_signalled) {
schro_encoder_end_of_stream(encoder);
......
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