mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 13:41:48 +00:00
theoraenc: remove some unused code that caused a compiler warning
The video format is set up in the sink pad's setcaps() function.
This commit is contained in:
parent
4340b80f81
commit
34955ac34d
1 changed files with 2 additions and 18 deletions
|
@ -995,26 +995,10 @@ theora_enc_is_discontinuous (GstTheoraEnc * enc, GstClockTime timestamp,
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
theora_enc_init_buffer (th_ycbcr_buffer buf, th_info * info,
|
theora_enc_init_buffer (th_ycbcr_buffer buf, GstVideoFrame * frame)
|
||||||
GstVideoFrame * frame)
|
|
||||||
{
|
{
|
||||||
GstVideoFormat format;
|
|
||||||
guint i;
|
guint i;
|
||||||
|
|
||||||
switch (info->pixel_fmt) {
|
|
||||||
case TH_PF_444:
|
|
||||||
format = GST_VIDEO_FORMAT_Y444;
|
|
||||||
break;
|
|
||||||
case TH_PF_420:
|
|
||||||
format = GST_VIDEO_FORMAT_I420;
|
|
||||||
break;
|
|
||||||
case TH_PF_422:
|
|
||||||
format = GST_VIDEO_FORMAT_Y42B;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
g_assert_not_reached ();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* According to Theora developer Timothy Terriberry, the Theora
|
/* According to Theora developer Timothy Terriberry, the Theora
|
||||||
* encoder will not use memory outside of pic_width/height, even when
|
* encoder will not use memory outside of pic_width/height, even when
|
||||||
* the frame size is bigger. The values outside this region will be encoded
|
* the frame size is bigger. The values outside this region will be encoded
|
||||||
|
@ -1144,7 +1128,7 @@ theora_enc_encode_and_push (GstTheoraEnc * enc, ogg_packet op,
|
||||||
GstVideoFrame frame;
|
GstVideoFrame frame;
|
||||||
|
|
||||||
gst_video_frame_map (&frame, &enc->vinfo, buffer, GST_MAP_READ);
|
gst_video_frame_map (&frame, &enc->vinfo, buffer, GST_MAP_READ);
|
||||||
theora_enc_init_buffer (ycbcr, &enc->info, &frame);
|
theora_enc_init_buffer (ycbcr, &frame);
|
||||||
|
|
||||||
if (theora_enc_is_discontinuous (enc, running_time, duration)) {
|
if (theora_enc_is_discontinuous (enc, running_time, duration)) {
|
||||||
theora_enc_reset (enc);
|
theora_enc_reset (enc);
|
||||||
|
|
Loading…
Reference in a new issue