]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/oggparsedirac.c
Merge commit '80fb19bc234a3f2350d891adf39f3738a8e4849f'
[ffmpeg] / libavformat / oggparsedirac.c
index 9a67e25f3db6e83aa13ee22fbdf2d9f65f449617..74b9ba4f8be90cf65aa51229eccc5308a1ede3a8 100644 (file)
@@ -55,14 +55,14 @@ static int dirac_header(AVFormatContext *s, int idx)
     if (av_image_check_sar(st->codecpar->width, st->codecpar->height, dsh->sample_aspect_ratio) >= 0)
         st->sample_aspect_ratio = dsh->sample_aspect_ratio;
 
-    // dirac in ogg always stores timestamps as though the video were interlaced
+    // Dirac in Ogg always stores timestamps as though the video were interlaced
     avpriv_set_pts_info(st, 64, dsh->framerate.den, 2 * dsh->framerate.num);
 
     av_freep(&dsh);
     return 1;
 }
 
-// various undocument things: granule is signed (only for dirac!)
+// various undocumented things: granule is signed (only for Dirac!)
 static uint64_t dirac_gptopts(AVFormatContext *s, int idx, uint64_t granule,
                               int64_t *dts_out)
 {