]> git.sesse.net Git - ffmpeg/blobdiff - output_example.c
matroskadec: simplify matroska_ebmlnum_sint()
[ffmpeg] / output_example.c
index 0b0b67ffcf488c062176d99a6aa76aecdd452a8a..bd9b7c3f6ff2ad76ce283770567aba93225ee67f 100644 (file)
@@ -157,7 +157,7 @@ static void write_audio_frame(AVFormatContext *oc, AVStream *st)
     pkt.size= avcodec_encode_audio(c, audio_outbuf, audio_outbuf_size, samples);
 
     if (c->coded_frame->pts != AV_NOPTS_VALUE)
-    pkt.pts= av_rescale_q(c->coded_frame->pts, c->time_base, st->time_base);
+        pkt.pts= av_rescale_q(c->coded_frame->pts, c->time_base, st->time_base);
     pkt.flags |= PKT_FLAG_KEY;
     pkt.stream_index= st->index;
     pkt.data= audio_outbuf;
@@ -382,7 +382,7 @@ static void write_video_frame(AVFormatContext *oc, AVStream *st)
             av_init_packet(&pkt);
 
             if (c->coded_frame->pts != AV_NOPTS_VALUE)
-            pkt.pts= av_rescale_q(c->coded_frame->pts, c->time_base, st->time_base);
+                pkt.pts= av_rescale_q(c->coded_frame->pts, c->time_base, st->time_base);
             if(c->coded_frame->key_frame)
                 pkt.flags |= PKT_FLAG_KEY;
             pkt.stream_index= st->index;